Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
ITimerBlockable.hpp
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 31.05.17.
3 //
4 
5 #ifndef RECAST_ILIMITINGTIMER_H
6 #define RECAST_ILIMITINGTIMER_H
7 
8 
9 #include "ITimer.hpp"
10 
16 public:
20  virtual std::chrono::milliseconds minDelta() const = 0;
21 
25  virtual void wait() = 0;
26 };
27 
32 template<typename T>
33 class ITimerBlockable : public virtual T, public virtual ITimerBlockableMixin {
34 };
35 
36 
37 #endif //RECAST_ILIMITINGTIMER_H
virtual std::chrono::milliseconds minDelta() const =0
Definition: ITimerBlockable.hpp:33
virtual void wait()=0
Definition: ITimerBlockable.hpp:15