- Timestamp:
- Dec 18, 2007, 2:42:53 PM (17 years ago)
- Location:
- code/branches/FICN/src
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/loader/LevelLoader.cc
r585 r614 40 40 #include "orxonox/objects/BaseObject.h" 41 41 #include "audio/AudioManager.h" 42 #include "orxonox/ orxonox.h"42 #include "orxonox/Orxonox.h" 43 43 44 44 using namespace std; -
code/branches/FICN/src/network/NetworkFrameListener.h
r605 r614 18 18 #include "Client.h" 19 19 //#include <iostream> 20 // #include "orxonox/ orxonox.cc"20 // #include "orxonox/Orxonox.cc" 21 21 network::Server *server_g; 22 22 network::Client *client_g; -
code/branches/FICN/src/orxonox/GraphicsEngine.h
r612 r614 1 1 /** 2 @file graphicsEngine.h2 @file GraphicsEngine.h 3 3 @brief Graphics Engine 4 4 @author Benjamin Knecht <beni_at_orxonox.net> -
code/branches/FICN/src/orxonox/Main.cc
r612 r614 27 27 28 28 /** 29 @file main.cc29 @file Main.cc 30 30 @brief main file handling most of the machine specific code 31 31 */ … … 36 36 37 37 #include "core/SignalHandler.h" 38 #include " orxonox.h"38 #include "Orxonox.h" 39 39 40 40 using namespace orxonox; -
code/branches/FICN/src/orxonox/Orxonox.cc
r612 r614 68 68 #include "hud/HUD.h" 69 69 70 #include " graphicsEngine.h"70 #include "GraphicsEngine.h" 71 71 #include "Orxonox.h" 72 72 -
code/branches/FICN/src/orxonox/objects/Ambient.cc
r560 r614 29 29 #include <string> 30 30 31 #include "../ orxonox.h"31 #include "../Orxonox.h" 32 32 #include "../../tinyxml/tinyxml.h" 33 33 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/BaseEntity.cc
r590 r614 2 2 #include <string> 3 3 4 #include "../ orxonox.h"4 #include "../Orxonox.h" 5 5 #include "../../tinyxml/tinyxml.h" 6 6 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/Camera.cc
r608 r614 6 6 #include <string> 7 7 8 #include "../ orxonox.h"9 #include "../ graphicsEngine.h"8 #include "../Orxonox.h" 9 #include "../GraphicsEngine.h" 10 10 #include "../../tinyxml/tinyxml.h" 11 11 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/Entity.cc
r560 r614 2 2 #include <string> 3 3 4 #include "../ orxonox.h"4 #include "../Orxonox.h" 5 5 #include "../../tinyxml/tinyxml.h" 6 6 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/Mesh.cc
r589 r614 2 2 3 3 #include "Mesh.h" 4 #include "../ orxonox.h"4 #include "../Orxonox.h" 5 5 6 6 namespace orxonox -
code/branches/FICN/src/orxonox/objects/Model.cc
r589 r614 3 3 #include "Model.h" 4 4 #include "../core/CoreIncludes.h" 5 #include "../ orxonox.h"5 #include "../Orxonox.h" 6 6 #include "../../tinyxml/tinyxml.h" 7 7 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/SceneNode.cc
r599 r614 2 2 #include <string> 3 3 4 #include "../ orxonox.h"4 #include "../Orxonox.h" 5 5 #include "../../tinyxml/tinyxml.h" 6 6 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/Skybox.cc
r560 r614 29 29 #include <string> 30 30 31 #include "../ orxonox.h"31 #include "../Orxonox.h" 32 32 #include "../../tinyxml/tinyxml.h" 33 33 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/SpaceShip.cc
r608 r614 31 31 #include "../../misc/String2Number.h" 32 32 #include "../core/CoreIncludes.h" 33 #include "../ orxonox.h"33 #include "../Orxonox.h" 34 34 35 35 #include "OgreCamera.h" -
code/branches/FICN/src/orxonox/objects/SpaceshipSteeringObject.cc
r612 r614 6 6 #include <string> 7 7 8 #include "../ orxonox.h"9 #include "../ graphicsEngine.h"8 #include "../Orxonox.h" 9 #include "../GraphicsEngine.h" 10 10 #include "../../tinyxml/tinyxml.h" 11 11 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/WorldEntity.cc
r595 r614 31 31 #include "WorldEntity.h" 32 32 #include "../core/CoreIncludes.h" 33 #include "../ orxonox.h"33 #include "../Orxonox.h" 34 34 #include "../../tinyxml/tinyxml.h" 35 35 #include "../../misc/Tokenizer.h" -
code/branches/FICN/src/orxonox/objects/test1.cc
r507 r614 3 3 #include "test3.h" 4 4 #include "../../tinyxml/tinyxml.h" 5 #include "../ orxonox.h"5 #include "../Orxonox.h" 6 6 #include <OgreSceneManager.h> 7 7
Note: See TracChangeset
for help on using the changeset viewer.