2013-12-13 23:47:16 +01:00
|
|
|
#ifndef DANBIASSERVER_MAINLOBBY_H
|
|
|
|
#define DANBIASSERVER_MAINLOBBY_H
|
2013-12-12 09:33:59 +01:00
|
|
|
|
|
|
|
#include "..\NetworkSession.h"
|
|
|
|
|
|
|
|
namespace DanBias
|
|
|
|
{
|
|
|
|
class MainLobby :public NetworkSession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MainLobby();
|
|
|
|
~MainLobby();
|
|
|
|
void Release();
|
|
|
|
|
2013-12-13 23:47:16 +01:00
|
|
|
void Frame();
|
|
|
|
|
2013-12-12 09:33:59 +01:00
|
|
|
private:
|
2013-12-16 09:00:11 +01:00
|
|
|
void ParseEvent(NetEvent& e);
|
2013-12-12 09:33:59 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
}//End namespace DanBias
|
|
|
|
#endif // !DANBIASGAME_GAMELOBBY_H
|