mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 02:40:26 +01:00
899d297f7b
Menu.cpp is so large(>6000 lines). I'll separate it!
30 lines
600 B
C++
30 lines
600 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_GAME_MENU_NETWORKOPEN_H
|
|
#define SE_INCL_GAME_MENU_NETWORKOPEN_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "GameMenu.h"
|
|
#include "MGButton.h"
|
|
#include "MGEdit.h"
|
|
#include "MGTitle.h"
|
|
|
|
class CNetworkOpenMenu : public CGameMenu {
|
|
public:
|
|
CTString gm_strPort;
|
|
|
|
CMGTitle gm_mgTitle;
|
|
CMGButton gm_mgAddressLabel;
|
|
CMGEdit gm_mgAddress;
|
|
CMGButton gm_mgPortLabel;
|
|
CMGEdit gm_mgPort;
|
|
CMGButton gm_mgJoin;
|
|
|
|
void Initialize_t(void);
|
|
void StartMenu(void);
|
|
void EndMenu(void);
|
|
};
|
|
|
|
#endif /* include-once check. */ |