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"
|
2013-12-18 13:07:10 +01:00
|
|
|
#include <PostBox\IPostBox.h>
|
2013-12-12 09:33:59 +01:00
|
|
|
|
|
|
|
namespace DanBias
|
|
|
|
{
|
|
|
|
class MainLobby :public NetworkSession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MainLobby();
|
2013-12-18 13:07:10 +01:00
|
|
|
virtual~MainLobby();
|
2013-12-12 09:33:59 +01:00
|
|
|
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:50:23 +01:00
|
|
|
void ParseEvents();
|
2013-12-12 09:33:59 +01:00
|
|
|
|
2013-12-18 08:44:10 +01:00
|
|
|
private:
|
2013-12-18 13:07:10 +01:00
|
|
|
Oyster::IPostBox<DanBias::NetworkSession::NetEvent> *box;
|
|
|
|
|
2013-12-12 09:33:59 +01:00
|
|
|
};
|
|
|
|
}//End namespace DanBias
|
|
|
|
#endif // !DANBIASGAME_GAMELOBBY_H
|