Changeset 900 for code/branches/input/src/orxonox/objects
- Timestamp:
- Mar 18, 2008, 12:27:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/input/src/orxonox/objects/Tickable.h
r871 r900 35 35 Attention: 36 36 Classes derived from a Tickable that want to have a tick(dt) function on their part, MUST call the 37 parent::tick(dt) function explicit in their implementation of tick(dt) because it's a virtual function.37 parent::tick(dt) function explicitly in their implementation of tick(dt) because it's a virtual function. 38 38 */ 39 39 … … 48 48 namespace orxonox 49 49 { 50 class TickFrameListener; // Forward declaration50 //class TickFrameListener; // Forward declaration 51 51 52 52 //! The Tickable interface provides a tick(dt) function, that gets called every frame. … … 64 64 }; 65 65 66 #if 0 66 67 //! The TickFrameListener calls the tick(dt) function of all Tickables every frame. 67 68 class _OrxonoxExport TickFrameListener : public Ogre::FrameListener … … 78 79 } 79 80 }; 81 #endif 80 82 } 81 83
Note: See TracChangeset
for help on using the changeset viewer.