Changeset 5876 for code/branches/core5/src/orxonox/gamestates/GSLevel.h
- Timestamp:
- Oct 4, 2009, 11:08:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/gamestates/GSLevel.h
r5863 r5876 38 38 namespace orxonox 39 39 { 40 class _OrxonoxExport GSLevel : public GameState , public OrxonoxClass40 class _OrxonoxExport GSLevel : public GameState 41 41 { 42 42 public: 43 43 GSLevel(const GameStateInfo& info); 44 44 ~GSLevel(); 45 void setConfigValues();46 45 47 46 void activate(); … … 49 48 void update(const Clock& time); 50 49 51 static void showIngameGUI(bool show);52 53 static XMLFile* startFile_s;54 55 50 protected: 56 51 void loadLevel(); 57 52 void unloadLevel(); 53 void showIngameGUI(bool show); 58 54 59 55 InputState* gameInputState_; //!< input state for normal ingame playing 60 56 InputState* guiMouseOnlyInputState_; //!< input state if we only need the mouse to use the GUI 61 57 InputState* guiKeysOnlyInputState_; //!< input state if we only need the keys to use the GUI 58 59 XMLFile* startFile_; 62 60 }; 63 61 }
Note: See TracChangeset
for help on using the changeset viewer.