YAPOG  0.0.1
Yet Another Pokemon Online Game
ISprite.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_ISPRITE_HPP
2 # define YAPOG_ISPRITE_HPP
3 
4 # include "YAPOG/Macros.hpp"
10 
11 namespace yap
12 {
14  struct YAPOG_LIB ISprite : public ISpatial
15  , public IDrawable
16  , public IUpdateable
17  , public ILoadable
18  , public ICloneable
19  {
20  virtual ~ISprite () {}
21 
24  virtual ISprite* Clone () const { return nullptr; }
26  };
27 } // namespace yap
28 
29 #endif // YAPOG_ISPRITE_HPP