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!
24 lines
457 B
C++
24 lines
457 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_GAME_MENU_NETWORKJOIN_H
|
|
#define SE_INCL_GAME_MENU_NETWORKJOIN_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "GameMenu.h"
|
|
#include "MGButton.h"
|
|
#include "MGTitle.h"
|
|
|
|
|
|
class CNetworkJoinMenu : public CGameMenu {
|
|
public:
|
|
CMGTitle gm_mgTitle;
|
|
CMGButton gm_mgLAN;
|
|
CMGButton gm_mgNET;
|
|
CMGButton gm_mgOpen;
|
|
|
|
void Initialize_t(void);
|
|
};
|
|
|
|
#endif /* include-once check. */ |