YAPOG  0.0.1
Yet Another Pokemon Online Game
RandomTileLayoutHandler.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_RANDOMTILELAYOUTHANDLER_HPP
2 # define YAPOG_RANDOMTILELAYOUTHANDLER_HPP
3 
4 # include "YAPOG/Macros.hpp"
7 
8 namespace yap
9 {
10  class Tile;
11 
13  {
15 
16  public:
17 
19  virtual ~RandomTileLayoutHandler ();
20 
21  void AddTile (Tile* tile);
22 
23  private:
24 
25  virtual void HandleExecute (TileLayer& tileLayer);
26 
28  };
29 } // namespace yap
30 
31 #endif // YAPOG_RANDOMTILELAYOUTHANDLER_HPP