Danbias/Code/Game/DanBiasServer/ServerObjects/Lobby/MainLobby.h

27 lines
447 B
C
Raw Normal View History

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"
#include <PostBox\IPostBox.h>
2013-12-12 09:33:59 +01:00
namespace DanBias
{
class MainLobby :public NetworkSession
{
public:
MainLobby();
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:
Oyster::IPostBox<DanBias::NetworkSession::NetEvent> *box;
2013-12-12 09:33:59 +01:00
};
}//End namespace DanBias
#endif // !DANBIASGAME_GAMELOBBY_H