YAPOG  0.0.1
Yet Another Pokemon Online Game
WorldObjectMoveController.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_WORLDOBJECTMOVECONTROLLER_HPP
2 # define YAPOG_WORLDOBJECTMOVECONTROLLER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  class DynamicWorldObject;
10 
12  {
14 
15  public:
16 
17  virtual ~WorldObjectMoveController ();
18 
19  const Vector2& GetForce () const;
20 
21  void SetValue (const Vector2& value);
22 
23  protected:
24 
26 
29 
30  private:
31 
32  static const Vector2 DEFAULT_VALUE;
33  };
34 } // namespace yap
35 
36 #endif // YAPOG_WORLDOBJECTMOVECONTROLLER_HPP