YAPOG  0.0.1
Yet Another Pokemon Online Game
ObjectMoveInfoSender.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_SERVER_OBJECTMOVEINFOSENDER_HPP
2 # define YAPOG_SERVER_OBJECTMOVEINFOSENDER_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 yse
16 {
19  {
21 
22  public:
23 
25  yap::IPacket& packet,
26  const yap::Vector2& objectVelocity);
27 
28  virtual ~ObjectMoveInfoSender ();
29 
30  virtual void VisitDynamicWorldObject (
31  const yap::DynamicWorldObject& visitable);
32 
33  private:
34 
36 
38  };
39 } // namespace yse
40 
41 #endif // YAPOG_SERVER_OBJECTMOVEINFOSENDER_HPP