YAPOG  0.0.1
Yet Another Pokemon Online Game
DrawableWorldObjectOrderComparator.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DRAWABLEWORLDOBJECTORDERCOMPARATOR_HPP
2 # define YAPOG_DRAWABLEWORLDOBJECTORDERCOMPARATOR_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  struct IDrawableWorldObject;
10 
12  : public LessComparator<IDrawableWorldObject*>
13  {
14  public:
15 
18 
23 
24  protected:
25 
26  virtual int HandleCompare (
27  IDrawableWorldObject* const& left,
28  IDrawableWorldObject* const& right) const;
29  };
30 } // namespace yap
31 
32 #endif // YAPOG_DRAWABLEWORLDOBJECTORDERCOMPARATOR_HPP