YAPOG  0.0.1
Yet Another Pokemon Online Game
BasicTileLayoutHandler.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_BASICTILELAYOUTHANDLER_HPP
2 # define YAPOG_BASICTILELAYOUTHANDLER_HPP
3 
4 # include "YAPOG/Macros.hpp"
8 
9 namespace yap
10 {
11  class Tile;
12 
14  {
16 
17  public:
18 
19  BasicTileLayoutHandler (uint width, uint height);
20  virtual ~BasicTileLayoutHandler ();
21 
22  void SetTile (uint x, uint y, Tile* tile);
23 
24  private:
25 
26  virtual void HandleExecute (TileLayer& tileLayer);
27 
31  };
32 } // namespace yap
33 
34 #endif // YAPOG_BASICTILELAYOUTHANDLER_HPP