29 lines
647 B
C++
29 lines
647 B
C++
#ifndef DANBIAS_CLIENT_MAINSTATE_H
|
|
#define DANBIAS_CLIENT_MAINSTATE_H
|
|
|
|
#include "GameClientState.h"
|
|
#include "OysterMath.h"
|
|
#include "NetworkClient.h"
|
|
#include <string>
|
|
namespace DanBias
|
|
{
|
|
namespace Client
|
|
{
|
|
class MainState : public GameClientState
|
|
{
|
|
private:
|
|
struct MyData;
|
|
::Utility::DynamicMemory::UniquePointer<MyData> privData;
|
|
public:
|
|
MainState(void);
|
|
~MainState(void);
|
|
bool Init( Oyster::Network::NetworkClient* nwClient );
|
|
bool LoadModels(std::wstring file);
|
|
ClientState Update(float deltaTime, InputClass* KeyInput);
|
|
|
|
bool Render();
|
|
bool Release();
|
|
};
|
|
}
|
|
}
|
|
#endif // ! DANBIAS_CLIENT_LOGINSTATE_H
|