Pokebot
Pokemon FireRed bot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
PressButton.hh
Go to the documentation of this file.
1 #ifndef __ACTION_PRESSBUTTON_HH__
2 #define __ACTION_PRESSBUTTON_HH__
3 
4 #include "Data.hh"
5 #include "AAction.hh"
6 #include "PokemonUtils.hh"
7 #include "../vbam/gba/Globals.h"
8 #include "../vbam/sdl/SDLGlobals.h"
9 
10 namespace Action
11 {
12  class PressButton : public AAction
13  {
14  public:
15  PressButton(EKey key);
16  ~PressButton();
17 
18  private:
19  void _init();
20  void _update();
21 
22  private:
23  EKey _key;
24  };
25 };
26 
27 #endif
Definition: PressButton.hh:12
Definition: AAction.hh:12
PressButton(EKey key)
Definition: PressButton.cpp:10
~PressButton()
Definition: PressButton.cpp:15
Definition: AAction.hh:24