Changeset 164 for code/trunk
- Timestamp:
- Nov 5, 2007, 1:16:39 PM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 12 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/CMakeLists.txt
r137 r164 2 2 3 3 # create a few variables to simplify life 4 SET(SRC_FILES orxonox.cc) 5 #SET(INC_FILES ExampleApplication.h ExampleFrameListener.h) 4 5 SET(SRC_FILES orxonox.cc loader/LevelLoader.cc xml/xmlParser.cc) 6 SET(INC_FILES loader/LevelLoader.h xml/xmlParser.h) 6 7 7 8 #Creates an executable -
code/trunk/src/orxonox.cc
r151 r164 35 35 #include <CEGUI/CEGUI.h> 36 36 #include <OgreCEGUIRenderer.h> 37 38 #include <string> 39 #include <iostream> 40 41 #include "xml/xmlParser.h" 42 #include "loader/LevelLoader.h" 43 37 44 38 45 // some tests to see if enet works without includsion … … 97 104 createRenderWindow(); 98 105 initializeResourceGroups(); 106 createScene(); 99 107 setupScene(); 100 108 setupInputSystem(); … … 180 188 } 181 189 190 void createScene(void) 191 { 192 193 string levelFile = "sp_level_moonstation.oxw"; 194 loader::LevelLoader* loader = new loader::LevelLoader(levelFile); 195 } 196 182 197 void setupScene() 183 198 {
Note: See TracChangeset
for help on using the changeset viewer.