Changeset 3323 for code/trunk/src/core/Game.cc
- Timestamp:
- Jul 19, 2009, 3:11:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Game.cc
r3318 r3323 110 110 Non-initialising constructor. 111 111 */ 112 Game::Game( int argc, char** argv)112 Game::Game(const std::string& cmdLine) 113 113 { 114 114 if (singletonRef_s != 0) … … 137 137 138 138 // Create the Core 139 this->core_ = new Core( argc, argv);139 this->core_ = new Core(cmdLine); 140 140 141 141 // After the core has been created, we can safely instantiate the GameStates
Note: See TracChangeset
for help on using the changeset viewer.