Changeset 1790 for code/trunk/src/orxonox/gamestates
- Timestamp:
- Sep 15, 2008, 11:38:46 PM (16 years ago)
- Location:
- code/trunk/src/orxonox/gamestates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/gamestates/GSDedicated.cc
r1755 r1790 102 102 void GSDedicated::ticked(const Clock& time) 103 103 { 104 // Call those objects that need the real time105 for (ObjectList<TickableReal>::iterator it = ObjectList<TickableReal>::begin(); it; ++it)106 it->tick(time.getDeltaTime());107 104 // Call the scene objects 108 105 for (ObjectList<Tickable>::iterator it = ObjectList<Tickable>::begin(); it; ++it) -
code/trunk/src/orxonox/gamestates/GSLevel.cc
r1755 r1790 113 113 void GSLevel::ticked(const Clock& time) 114 114 { 115 // Call those objects that need the real time116 for (ObjectList<TickableReal>::iterator it = ObjectList<TickableReal>::begin(); it; ++it)117 it->tick(time.getDeltaTime());118 115 // Call the scene objects 119 116 for (ObjectList<Tickable>::iterator it = ObjectList<Tickable>::begin(); it; ++it)
Note: See TracChangeset
for help on using the changeset viewer.