YAPOG  0.0.1
Yet Another Pokemon Online Game
DelayedFrameSwitcher.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DELAYEDFRAMESWITCHER_HPP
2 # define YAPOG_DELAYEDFRAMESWITCHER_HPP
3 
4 # include "YAPOG/Macros.hpp"
8 
9 namespace yap
10 {
12  {
14 
15  public:
16 
17  explicit DelayedFrameSwitcher (const Time& delay);
18  virtual ~DelayedFrameSwitcher ();
19 
22  virtual DelayedFrameSwitcher* Clone () const;
24 
25  protected:
26 
28 
29  private:
30 
31  virtual int HandleFrameIsOver (const Time& dt);
32 
35  };
36 } // namespace yap
37 
38 #endif // YAPOG_DELAYEDFRAMESWITCHER_HPP