- Timestamp:
- Nov 9, 2008, 4:28:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/gamestates/GSDedicated.cc
r2112 r2161 32 32 #include "core/CommandLine.h" 33 33 #include "core/Core.h" 34 #include "core/Iterator.h" 34 35 #include "network/Server.h" 36 #include "objects/Tickable.h" 35 37 36 38 namespace orxonox … … 73 75 server_->tick(time.getDeltaTime()); 74 76 this->tickChild(time); 77 78 /*** HACK *** HACK ***/ 79 // Call the Tickable objects 80 for (ObjectList<Tickable>::iterator it = ObjectList<Tickable>::begin(); it; ++it) 81 it->tick(time.getDeltaTime()); 82 /*** HACK *** HACK ***/ 75 83 } 76 84 }
Note: See TracChangeset
for help on using the changeset viewer.