Changeset 733 for code/branches/FICN/src
- Timestamp:
- Dec 30, 2007, 10:17:38 PM (17 years ago)
- Location:
- code/branches/FICN/src
- Files:
-
- 3 added
- 2 deleted
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/loader/LevelLoader.cc
r715 r733 34 34 35 35 #include "audio/AudioManager.h" 36 #include "orxonox/ objects/BaseObject.h"36 #include "orxonox/core/BaseObject.h" 37 37 #include "orxonox/Orxonox.h" 38 38 -
code/branches/FICN/src/network/GameStateClient.h
r732 r733 16 16 #include "Synchronisable.h" 17 17 #include "orxonox/core/CoreIncludes.h" 18 #include "orxonox/ objects/BaseObject.h"18 #include "orxonox/core/BaseObject.h" 19 19 #include "GameStateManager.h" 20 20 -
code/branches/FICN/src/orxonox/CMakeLists.txt
r718 r733 18 18 IF(WIN32) 19 19 SET( OBJECTS_SRC_FILES 20 objects/BaseObject.cc21 20 objects/WorldEntity.cc 22 21 objects/test1.cc -
code/branches/FICN/src/orxonox/OrxonoxPrereqs.h
r729 r733 62 62 class InputManager; 63 63 class SpaceShipSteering; 64 65 // TinyXML66 class TiXmlString;67 class TiXmlOutStream;68 class TiXmlNode;69 class TiXmlHandle;70 class TiXmlDocument;71 class TiXmlElement;72 class TiXmlComment;73 class TiXmlUnknown;74 class TiXmlAttribute;75 class TiXmlText;76 class TiXmlDeclaration;77 class TiXmlParsingData;78 64 79 65 namespace orxonox { -
code/branches/FICN/src/orxonox/core/CMakeLists.txt
r704 r733 2 2 3 3 SET( CORE_SRC_FILES 4 BaseObject.cc 4 5 Factory.cc 5 6 IdentifierList.cc -
code/branches/FICN/src/orxonox/core/Factory.cc
r715 r733 33 33 #include "Identifier.h" 34 34 #include "Debug.h" 35 #include " ../objects/BaseObject.h"35 #include "BaseObject.h" 36 36 #include "Factory.h" 37 37 -
code/branches/FICN/src/orxonox/objects/Ambient.h
r729 r733 4 4 #include "../OrxonoxPrereqs.h" 5 5 6 #include " BaseObject.h"6 #include "orxonox/core/BaseObject.h" 7 7 8 8 namespace orxonox -
code/branches/FICN/src/orxonox/objects/CMakeLists.txt
r676 r733 3 3 SET( OBJECTS_SRC_FILES 4 4 Ambient.cc 5 BaseObject.cc6 5 BillboardSet.cc 7 6 Camera.cc -
code/branches/FICN/src/orxonox/objects/Camera.h
r729 r733 4 4 #include "../OrxonoxPrereqs.h" 5 5 6 #include " BaseObject.h"6 #include "orxonox/core/BaseObject.h" 7 7 8 8 namespace orxonox -
code/branches/FICN/src/orxonox/objects/Skybox.h
r729 r733 4 4 #include "../OrxonoxPrereqs.h" 5 5 6 #include " BaseObject.h"6 #include "orxonox/core/BaseObject.h" 7 7 8 8 class TiXmlElement; // Forward declaration -
code/branches/FICN/src/orxonox/objects/WorldEntity.h
r729 r733 11 11 #include "tinyxml/tinyxml.h" 12 12 #include "../core/CoreIncludes.h" 13 #include " BaseObject.h"13 #include "orxonox/core/BaseObject.h" 14 14 #include "Tickable.h" 15 15 #include "Mesh.h" -
code/branches/FICN/src/orxonox/objects/weapon_system/AmmunitionDump.h
r729 r733 38 38 #include "network/Synchronisable.h" 39 39 //#include "../core/CoreIncludes.h" 40 #include " ../BaseObject.h"40 #include "orxonox/core/BaseObject.h" 41 41 42 42 -
code/branches/FICN/src/orxonox/objects/weapon_system/BulletManager.h
r729 r733 39 39 #include "tinyxml/tinyxml.h" 40 40 #include "../../core/CoreIncludes.h" 41 #include " ../BaseObject.h"41 #include "orxonox/core/BaseObject.h" 42 42 #include "../Tickable.h" 43 43
Note: See TracChangeset
for help on using the changeset viewer.