UGDK  0.5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
observer.h
Go to the documentation of this file.
1 #ifndef UGDK_ACTION_OBSERVER_H_
2 #define UGDK_ACTION_OBSERVER_H_
3 
4 namespace ugdk {
5 
6 namespace action {
7 
8 class Observer {
9  public:
10  virtual ~Observer() {}
11  virtual void Tick() = 0;
12 };
13 
14 } /* namespace action */
15 
16 } /* namespace ugdk */
17 
18 #endif /* UGDK_ACTION_OBSERVER_H_ */
virtual ~Observer()
Definition: observer.h:10
Definition: animation.h:11
Definition: observer.h:8
virtual void Tick()=0