Changeset 640
- Timestamp:
- Dec 19, 2007, 2:14:47 AM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox/objects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/Tickable.h
r496 r640 4 4 5 5 The Tickable interface provides a tick(dt) function, that gets called every frame. 6 float dt is the time since the last frame .6 float dt is the time since the last frame in seconds. 7 7 8 8 Attention: … … 27 27 /** 28 28 @brief Gets called every frame. 29 @param dt The time since the last frame 29 @param dt The time since the last frame in seconds 30 30 */ 31 31 virtual void tick(float dt) = 0; -
code/branches/FICN/src/orxonox/objects/Timer.h
r496 r640 12 12 ClassName(); 13 13 void functionName(); 14 Timer myTimer;14 Timer<ClassName> myTimer; 15 15 }; 16 16
Note: See TracChangeset
for help on using the changeset viewer.