- Timestamp:
- Apr 8, 2009, 12:36:08 AM (16 years ago)
- Location:
- code/branches/questsystem5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem5
- Property svn:mergeinfo changed
-
code/branches/questsystem5/src/orxonox/gamestates/GSStandalone.h
r2087 r2907 31 31 32 32 #include "OrxonoxPrereqs.h" 33 #include "GSLevel.h" 34 #include "GSGraphics.h" 33 #include "core/GameState.h" 35 34 36 35 namespace orxonox 37 36 { 38 class _OrxonoxExport GSStandalone : public GameState <GSGraphics>, public GSLevel37 class _OrxonoxExport GSStandalone : public GameState 39 38 { 40 39 public: 41 GSStandalone( );40 GSStandalone(const std::string& name); 42 41 ~GSStandalone(); 43 42 43 void activate(); 44 void deactivate(); 45 void update(const Clock& time); 46 44 47 private: 45 void enter();46 void leave();47 void ticked(const Clock& time);48 48 }; 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.