Changeset 6378 for code/branches/presentation2/src/orxonox/gamestates
- Timestamp:
- Dec 18, 2009, 12:48:19 PM (15 years ago)
- Location:
- code/branches/presentation2/src/orxonox/gamestates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/orxonox/gamestates/GSMainMenu.cc
r6349 r6378 37 37 #include "core/ConsoleCommand.h" 38 38 #include "core/ConfigValueIncludes.h" 39 #include "core/CoreIncludes.h" 39 40 #include "core/GraphicsManager.h" 40 41 #include "core/GUIManager.h" -
code/branches/presentation2/src/orxonox/gamestates/GSRoot.cc
r6160 r6378 30 30 31 31 #include "util/Clock.h" 32 #include "core/BaseObject.h" 32 33 #include "core/ConsoleCommand.h" 33 34 #include "core/Game.h" … … 58 59 { 59 60 unsigned int nr=0; 60 for(ObjectList<BaseObject>::iterator it = ObjectList<BaseObject>::begin(); it; ++it){ 61 if( dynamic_cast<Synchronisable*>(*it) ) 61 for (ObjectList<BaseObject>::iterator it = ObjectList<BaseObject>::begin(); it; ++it) 62 { 63 if (dynamic_cast<Synchronisable*>(*it)) 62 64 COUT(0) << "object: " << it->getIdentifier()->getName() << " id: " << dynamic_cast<Synchronisable*>(*it)->getObjectID() << std::endl; 63 65 else … … 66 68 } 67 69 COUT(0) << "currently got " << nr << " objects" << std::endl; 68 69 70 } 70 71
Note: See TracChangeset
for help on using the changeset viewer.