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!
27 lines
520 B
C++
27 lines
520 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_GAME_MENU_CONFIRM_H
|
|
#define SE_INCL_GAME_MENU_CONFIRM_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "GameMenu.h"
|
|
#include "MGButton.h"
|
|
|
|
|
|
class CConfirmMenu : public CGameMenu {
|
|
public:
|
|
CMGButton gm_mgConfirmLabel;
|
|
CMGButton gm_mgConfirmYes;
|
|
CMGButton gm_mgConfirmNo;
|
|
|
|
void Initialize_t(void);
|
|
// return TRUE if handled
|
|
BOOL OnKeyDown(int iVKey);
|
|
|
|
void BeLarge(void);
|
|
void BeSmall(void);
|
|
};
|
|
|
|
#endif /* include-once check. */ |