YAPOG  0.0.1
Yet Another Pokemon Online Game
BaseStaticWorldObjectVisitor.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_BASESTATICWORLDOBJECTVISITOR_HPP
2 # define YAPOG_BASESTATICWORLDOBJECTVISITOR_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  class MapElement;
10 
12  {
14 
15  public:
16 
18 
19  virtual void VisitStaticWorldObject (StaticWorldObject& visitable);
20  virtual void VisitMapElement (MapElement& visitable);
21 
22  protected:
23 
25  };
26 } // namespace yap
27 
28 #endif // YAPOG_BASESTATICWORLDOBJECTVISITOR_HPP