Changeset 1689 for code/branches/gui/src/core/RootGameState.h
- Timestamp:
- Aug 31, 2008, 6:07:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/RootGameState.h
r1688 r1689 35 35 namespace orxonox 36 36 { 37 class _CoreExport RootGameState : public GameState Typed<GameState>37 class _CoreExport RootGameState : public GameState<GameStateBase> 38 38 { 39 39 public: … … 42 42 43 43 void requestState(const std::string& name); 44 void start( );44 void start(int argc, char** argv); 45 45 46 46 private: 47 void makeTransition(GameState * source, GameState* destination);47 void makeTransition(GameStateBase* source, GameStateBase* destination); 48 48 void gotoState(const std::string& name); 49 50 void parseCommandLine(int argc, char** argv); 49 51 50 52 std::string stateRequest_;
Note: See TracChangeset
for help on using the changeset viewer.