YAPOG  0.0.1
Yet Another Pokemon Online Game
RegularAnimatedSprite.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_REGULARANIMATEDSPRITE_HPP
2 # define YAPOG_REGULARANIMATEDSPRITE_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
10  {
12 
13  public:
14 
16  explicit RegularAnimatedSprite (const Time& delay);
17  explicit RegularAnimatedSprite (int frameRate);
18  virtual ~RegularAnimatedSprite ();
19 
22  virtual RegularAnimatedSprite* Clone () const;
24 
25  protected:
26 
28 
29  private:
30 
31  static const int DEFAULT_FRAME_RATE;
32  };
33 } // namespace yap
34 
35 #endif // YAPOG_REGULARANIMATEDSPRITE_HPP