2013-12-13 23:47:16 +01:00
|
|
|
#ifndef DANBIASSERVER_GAMELOBBY_H
|
|
|
|
#define DANBIASSERVER_GAMELOBBY_H
|
2013-12-12 09:33:59 +01:00
|
|
|
|
|
|
|
#include "..\NetworkSession.h"
|
|
|
|
|
|
|
|
namespace DanBias
|
|
|
|
{
|
|
|
|
class GameLobby :public NetworkSession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GameLobby();
|
|
|
|
~GameLobby();
|
|
|
|
void Release();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
}//End namespace DanBias
|
|
|
|
|
|
|
|
#endif // !DANBIASSERVER_GAME_LOBBY_H
|