Serious-Engine/Sources/SeriousSam/MDisabled.h
zcaliptium 220875d2de GameExecutable: Move some stuff from Menu.cpp into files PART TWO
Menu.cpp is so large(>6000 lines). I'll separate it!
2016-03-14 02:46:30 +03:00

22 lines
407 B
C++

/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
#ifndef SE_INCL_GAME_MENU_DISABLED_H
#define SE_INCL_GAME_MENU_DISABLED_H
#ifdef PRAGMA_ONCE
#pragma once
#endif
#include "GameMenu.h"
#include "MGButton.h"
#include "MGTitle.h"
class CDisabledMenu : public CGameMenu {
public:
CMGTitle gm_mgTitle;
CMGButton gm_mgButton;
void Initialize_t(void);
};
#endif /* include-once check. */