YAPOG  0.0.1
Yet Another Pokemon Online Game
MapArea.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_MAPAREA_HPP
2 # define YAPOG_MAPAREA_HPP
3 
4 # include "YAPOG/Macros.hpp"
7 
8 namespace yap
9 {
11  class MapArea : public DynamicWorldObject
12  {
14 
15  public:
16 
17  virtual ~MapArea ();
18 
19  protected:
20 
21  explicit MapArea (const ID& id);
22 
23  MapArea (const MapArea& copy);
24 
25  void SetArea (const FloatRect& area);
26 
27  virtual void HandleSetArea (const FloatRect& area);
28 
29  private:
30 
32  };
33 } // namespace yap
34 
35 #endif // YAPOG_MAPAREA_HPP