2016-03-12 16:25:48 +01:00
|
|
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
|
|
|
|
#ifndef SE_INCL_GAME_MENU_SINGLEPLAYERNEW_H
|
|
|
|
#define SE_INCL_GAME_MENU_SINGLEPLAYERNEW_H
|
|
|
|
#ifdef PRAGMA_ONCE
|
|
|
|
#pragma once
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "GameMenu.h"
|
2016-03-14 00:46:30 +01:00
|
|
|
#include "MGButton.h"
|
|
|
|
#include "MGTitle.h"
|
2016-03-12 16:25:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
class CSinglePlayerNewMenu : public CGameMenu {
|
|
|
|
public:
|
2016-03-14 00:46:30 +01:00
|
|
|
CMGTitle gm_mgTitle;
|
|
|
|
CMGButton gm_mgTourist;
|
|
|
|
CMGButton gm_mgEasy;
|
|
|
|
CMGButton gm_mgMedium;
|
|
|
|
CMGButton gm_mgHard;
|
|
|
|
CMGButton gm_mgSerious;
|
|
|
|
CMGButton gm_mgMental;
|
|
|
|
|
2016-03-12 16:25:48 +01:00
|
|
|
void Initialize_t(void);
|
|
|
|
void StartMenu(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* include-once check. */
|