YAPOG  0.0.1
Yet Another Pokemon Online Game
CharacterMoveController.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_CHARACTERMOVECONTROLLER_HPP
2 # define YAPOG_CHARACTERMOVECONTROLLER_HPP
3 
4 # include "YAPOG/Macros.hpp"
7 # include "YAPOG/Collection/Map.hpp"
8 
9 namespace yap
10 {
12  {
14 
15  public:
16 
18  virtual ~CharacterMoveController ();
19 
20  void EnableDirection (Direction direction);
21  void DisableDirection (Direction direction);
22 
23  private:
24 
25  void Update ();
26 
28 
31  };
32 } // namespace yap
33 
34 #endif // YAPOG_CHARACTERMOVECONTROLLER_HPP