Serious-Engine/Sources/SeriousSam/GUI/Menus/MOptions.h
2016-03-16 21:56:44 +03:00

27 lines
601 B
C++

/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
#ifndef SE_INCL_GAME_MENU_OPTIONS_H
#define SE_INCL_GAME_MENU_OPTIONS_H
#ifdef PRAGMA_ONCE
#pragma once
#endif
#include "GameMenu.h"
#include "GUI/Components/MGButton.h"
#include "GUI/Components/MGTitle.h"
class COptionsMenu : public CGameMenu {
public:
CMGTitle gm_mgTitle;
CMGButton gm_mgVideoOptions;
CMGButton gm_mgAudioOptions;
CMGButton gm_mgPlayerProfileOptions;
CMGButton gm_mgNetworkOptions;
CMGButton gm_mgCustomOptions;
CMGButton gm_mgAddonOptions;
void Initialize_t(void);
};
#endif /* include-once check. */