21 lines
302 B
C++
21 lines
302 B
C++
#ifndef DANBIASSERVER_GAMELOBBY_H
|
|
#define DANBIASSERVER_GAMELOBBY_H
|
|
|
|
#include "..\NetworkSession.h"
|
|
|
|
namespace DanBias
|
|
{
|
|
class GameLobby :public NetworkSession
|
|
{
|
|
public:
|
|
GameLobby();
|
|
~GameLobby();
|
|
void Release();
|
|
|
|
private:
|
|
|
|
|
|
};
|
|
}//End namespace DanBias
|
|
|
|
#endif // !DANBIASSERVER_GAME_LOBBY_H
|