4 * Created on: Aug 7, 2012
8 #ifndef BATTLE_SELECTMOVEACTION_H_
9 #define BATTLE_SELECTMOVEACTION_H_
12 #include "../../app/State.h"
13 #include "../../geometry/Vector.h"
17 class SelectMoveAction
21 explicit SelectMoveAction(BattleState *battle)
22 : ctrl(0), battle(battle) { }
25 virtual void EnterState(app::Application &ctrl, SDL_Surface *screen);
26 virtual void ExitState(app::Application &ctrl, SDL_Surface *screen);
27 virtual void ResumeState(app::Application &ctrl, SDL_Surface *screen);
28 virtual void PauseState(app::Application &ctrl, SDL_Surface *screen);
30 virtual void Resize(int width, int height);
32 virtual void HandleEvents(const app::Input &);
33 virtual void UpdateWorld(float deltaT);
34 virtual void Render(SDL_Surface *);
37 void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset);
40 app::Application *ctrl;
47 #endif /* BATTLE_SELECTMOVEACTION_H_ */