19 lines
311 B
C
19 lines
311 B
C
|
#ifndef DANBIASSERVER_GAME_SESSION_H
|
||
|
#define DANBIASSERVER_GAME_SESSION_H
|
||
|
|
||
|
#include "NetworkSession.h"
|
||
|
|
||
|
namespace DanBias
|
||
|
{
|
||
|
class GameSession :public NetworkSession
|
||
|
{
|
||
|
public:
|
||
|
GameSession();
|
||
|
~GameSession();
|
||
|
|
||
|
private:
|
||
|
|
||
|
|
||
|
};//End GameSession
|
||
|
}//End namespace DanBias
|
||
|
#endif // !DANBIASSERVER_GAME_SESSION_H
|