UGDK
src/ugdk/action/observer.h
Go to the documentation of this file.
00001 #ifndef UGDK_ACTION_OBSERVER_H_
00002 #define UGDK_ACTION_OBSERVER_H_
00003 
00004 namespace ugdk {
00005 
00006 namespace action {
00007 
00008 class Observer {
00009   public:
00010     virtual ~Observer() {}
00011     virtual void Tick() = 0;
00012 };
00013 
00014 } /* namespace action */
00015 
00016 } /* namespace ugdk */
00017 
00018 #endif /* UGDK_ACTION_OBSERVER_H_ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines