YAPOG  0.0.1
Yet Another Pokemon Online Game
ObjectMoveInfoHandler.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_CLIENT_OBJECTMOVEINFOHANDLER_HPP
2 # define YAPOG_CLIENT_OBJECTMOVEINFOHANDLER_HPP
3 
4 # include "YAPOG/Macros.hpp"
7 
8 namespace yap
9 {
10  struct IPacket;
11 
12  class DynamicWorldObject;
13 } // namespace yap
14 
15 namespace ycl
16 {
19  {
21 
22  public:
23 
24  explicit ObjectMoveInfoHandler (yap::IPacket& packet);
25 
26  virtual ~ObjectMoveInfoHandler ();
27 
28  virtual void VisitDynamicWorldObject (
29  yap::DynamicWorldObject& visitable);
30 
31  private:
32 
34  };
35 } // namespace ycl
36 
37 #endif // YAPOG_CLIENT_OBJECTMOVEINFOHANDLER_HPP