YAPOG  0.0.1
Yet Another Pokemon Online Game
MapArea.cpp
Go to the documentation of this file.
2 
3 namespace yap
4 {
5  MapArea::MapArea (const ID& id)
6  : DynamicWorldObject (id)
7  , area_ ()
8  {
9  }
10 
12  {
13  }
14 
15  MapArea::MapArea (const MapArea& copy)
16  : DynamicWorldObject (copy)
17  , area_ (copy.area_)
18  {
19  }
20 
21  void MapArea::SetArea (const FloatRect& area)
22  {
23  area_ = area;
24 
25  HandleSetArea (area);
26  }
27 
28  void MapArea::HandleSetArea (const FloatRect& area)
29  {
30  }
31 } // namespace yap