2016-03-12 16:25:48 +01:00
|
|
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
|
|
|
|
#ifndef SE_INCL_GAME_MENU_MAIN_H
|
|
|
|
#define SE_INCL_GAME_MENU_MAIN_H
|
|
|
|
#ifdef PRAGMA_ONCE
|
|
|
|
#pragma once
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "GameMenu.h"
|
2016-03-16 19:43:05 +01:00
|
|
|
#include "GUI/Components/MGButton.h"
|
2016-03-12 16:25:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
class CMainMenu : public CGameMenu {
|
|
|
|
public:
|
2016-03-13 22:52:32 +01:00
|
|
|
CMGButton gm_mgVersionLabel;
|
|
|
|
CMGButton gm_mgModLabel;
|
|
|
|
CMGButton gm_mgSingle;
|
|
|
|
CMGButton gm_mgNetwork;
|
|
|
|
CMGButton gm_mgSplitScreen;
|
|
|
|
CMGButton gm_mgDemo;
|
|
|
|
CMGButton gm_mgMods;
|
|
|
|
CMGButton gm_mgHighScore;
|
|
|
|
CMGButton gm_mgOptions;
|
|
|
|
CMGButton gm_mgQuit;
|
|
|
|
|
2016-03-12 16:25:48 +01:00
|
|
|
void Initialize_t(void);
|
|
|
|
void StartMenu(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* include-once check. */
|