mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 02:40:26 +01:00
189c343368
Menu.cpp is so large(>6000 lines). I'll separate it!
31 lines
658 B
C++
31 lines
658 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_GAME_MENU_SINGLEPLAYER_H
|
|
#define SE_INCL_GAME_MENU_SINGLEPLAYER_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "GameMenu.h"
|
|
#include "MGButton.h"
|
|
#include "MGTitle.h"
|
|
|
|
|
|
class CSinglePlayerMenu : public CGameMenu {
|
|
public:
|
|
CMGTitle gm_mgTitle;
|
|
CMGButton gm_mgPlayerLabel;
|
|
CMGButton gm_mgNewGame;
|
|
CMGButton gm_mgCustom;
|
|
CMGButton gm_mgQuickLoad;
|
|
CMGButton gm_mgLoad;
|
|
CMGButton gm_mgTraining;
|
|
CMGButton gm_mgTechTest;
|
|
CMGButton gm_mgPlayersAndControls;
|
|
CMGButton gm_mgOptions;
|
|
|
|
void Initialize_t(void);
|
|
void StartMenu(void);
|
|
};
|
|
|
|
#endif /* include-once check. */ |