Unneeded code.
This commit is contained in:
parent
8d2ddaa9ff
commit
4e3ad27ae8
2 changed files with 1 additions and 8 deletions
|
@ -37,14 +37,10 @@ namespace cloonel {
|
||||||
};
|
};
|
||||||
} //unnamed namespace
|
} //unnamed namespace
|
||||||
|
|
||||||
struct GameplaySceneClassic::LocalData {
|
|
||||||
};
|
|
||||||
|
|
||||||
///--------------------------------------------------------------------------
|
///--------------------------------------------------------------------------
|
||||||
///--------------------------------------------------------------------------
|
///--------------------------------------------------------------------------
|
||||||
GameplaySceneClassic::GameplaySceneClassic (SDLMain* parSdlMain) :
|
GameplaySceneClassic::GameplaySceneClassic (SDLMain* parSdlMain) :
|
||||||
GameplayScene(parSdlMain),
|
GameplayScene(parSdlMain)
|
||||||
m_local(new LocalData)
|
|
||||||
{
|
{
|
||||||
//TODO: replace the hardcoded bindings with something more customizable.
|
//TODO: replace the hardcoded bindings with something more customizable.
|
||||||
InputBag& input = *InputBagObject();
|
InputBag& input = *InputBagObject();
|
||||||
|
|
|
@ -41,9 +41,6 @@ namespace cloonel {
|
||||||
private:
|
private:
|
||||||
virtual void OnPreUpdate ( void );
|
virtual void OnPreUpdate ( void );
|
||||||
|
|
||||||
struct LocalData;
|
|
||||||
|
|
||||||
const std::unique_ptr <LocalData> m_local;
|
|
||||||
std::unique_ptr<Character> m_player;
|
std::unique_ptr<Character> m_player;
|
||||||
std::unique_ptr<MoverSine> m_moverSine;
|
std::unique_ptr<MoverSine> m_moverSine;
|
||||||
std::unique_ptr<MoverLeftRight> m_moverLeftRight;
|
std::unique_ptr<MoverLeftRight> m_moverLeftRight;
|
||||||
|
|
Loading…
Add table
Reference in a new issue