Changeset 5968 in orxonox.OLD for branches/network/src/util
- Timestamp:
- Dec 7, 2005, 4:16:51 PM (19 years ago)
- Location:
- branches/network/src/util
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/util/loading/factory.h
r5750 r5968 25 25 class BaseObject; 26 26 27 #include " tinyxml.h"27 #include "parser/tinyxml/tinyxml.h" 28 28 #include "base_object.h" 29 29 #include "debug.h" -
branches/network/src/util/loading/resource_manager.cc
r5483 r5968 33 33 #endif /* NO_TEXT */ 34 34 #ifndef NO_AUDIO 35 #include "sound_ engine.h"35 #include "sound_buffer.h" 36 36 #include "ogg_player.h" 37 37 #endif /* NO_AUDIO */ -
branches/network/src/util/object_manager.cc
r5795 r5968 62 62 list<BaseObject*>::const_iterator node; 63 63 for (node = objectList->begin(); node != objectList->end(); node++) 64 {65 printf("1:::%s\n", (*node)->getName());66 64 if ((dynamic_cast<PNode*>(*node)->getAbsCoor() - center.getAbsCoor()).len() < radius) 67 {68 65 newList->push_back(dynamic_cast<WorldEntity*>(*node)); 69 printf("%s\n",(*node)->getName());70 }71 }72 66 return newList; 73 67 } -
branches/network/src/util/track/track_manager.cc
r5767 r5968 28 28 29 29 30 #include " tinyxml.h"30 #include "parser/tinyxml/tinyxml.h" 31 31 #include "substring.h" 32 32
Note: See TracChangeset
for help on using the changeset viewer.