mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2025-02-16 23:20:09 +01:00
29 lines
539 B
C++
29 lines
539 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_GAME_MENU_SERVERS_H
|
|
#define SE_INCL_GAME_MENU_SERVERS_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "GameMenu.h"
|
|
#include "MGButton.h"
|
|
#include "MGEdit.h"
|
|
#include "MGServerList.h"
|
|
#include "MGTitle.h"
|
|
|
|
|
|
class CServersMenu : public CGameMenu {
|
|
public:
|
|
BOOL m_bInternet;
|
|
|
|
CMGTitle gm_mgTitle;
|
|
CMGServerList gm_mgList;
|
|
CMGButton gm_mgRefresh;
|
|
|
|
void Initialize_t(void);
|
|
void StartMenu(void);
|
|
void Think(void);
|
|
};
|
|
|
|
#endif /* include-once check. */ |