Danbias/Code/Game/DanBiasGame/GameClientState/LanMenuState.h

31 lines
591 B
C
Raw Normal View History

2014-01-30 23:23:37 +01:00
#ifndef LAN_MENU_STATE_H
#define LAN_MENU_STATE_H
#include "GameClientState.h"
#include "OysterMath.h"
namespace DanBias
{
namespace Client
{
class LanMenuState : public GameClientState
{
public:
LanMenuState();
virtual ~LanMenuState();
virtual bool Init(Oyster::Network::NetworkClient* nwClient);
virtual ClientState Update(float deltaTime, InputClass* KeyInput);
2014-02-12 14:33:56 +01:00
virtual bool Render();
2014-01-30 23:23:37 +01:00
virtual bool Release();
2014-02-12 16:31:15 +01:00
void ChangeState( ClientState next );
2014-01-30 23:23:37 +01:00
private:
2014-02-12 16:31:15 +01:00
struct MyData;
::Utility::DynamicMemory::UniquePointer<MyData> privData;
2014-01-30 23:23:37 +01:00
};
}
}
#endif