mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 10:50:26 +01:00
25 lines
517 B
C++
25 lines
517 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_GAME_MENU_SPLITSCREEN_H
|
|
#define SE_INCL_GAME_MENU_SPLITSCREEN_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "GameMenu.h"
|
|
#include "GUI/Components/MGButton.h"
|
|
#include "GUI/Components/MGTitle.h"
|
|
|
|
|
|
class CSplitScreenMenu : public CGameMenu {
|
|
public:
|
|
CMGTitle gm_mgTitle;
|
|
CMGButton gm_mgStart;
|
|
CMGButton gm_mgQuickLoad;
|
|
CMGButton gm_mgLoad;
|
|
|
|
void Initialize_t(void);
|
|
void StartMenu(void);
|
|
};
|
|
|
|
#endif /* include-once check. */ |