Files
NazaraEngine/tests/Engine/Platform/EventHandler/TextEnterState.hpp
Gawaboumga 5aa072cee3 New module: Platform - Split window management from Utility module (#128)
* New module: Platform - Split window management from Utility module

Final touch

* NDK/SDK: Bring back initialization of Utility
2017-08-30 10:22:50 +02:00

22 lines
461 B
C++

#ifndef __TEXTENTERSTATE_HPP__
#define __TEXTENTERSTATE_HPP__
#include "BaseState.hpp"
class StateContext;
class TextEnterState : public BaseState
{
public:
TextEnterState(StateContext& stateContext);
void Enter(Ndk::StateMachine& fsm) override;
private:
void DrawMenu() override;
NazaraSlot(Nz::EventHandler, OnKeyPressed, m_keyPressedSlot);
NazaraSlot(Nz::EventHandler, OnTextEntered, m_textEnteredSlot);
};
#endif // __TEXTENTERSTATE_HPP__