- Timestamp:
- Apr 8, 2009, 12:58:47 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
r2907 r2908 31 31 32 32 #include "OrxonoxPrereqs.h" 33 #include "core/GameState.h" 33 #include "GSLevel.h" 34 #include "GSGraphics.h" 34 35 35 36 namespace orxonox 36 37 { 37 class _OrxonoxExport GSStandalone : public GameState 38 class _OrxonoxExport GSStandalone : public GameState<GSGraphics>, public GSLevel 38 39 { 39 40 public: 40 GSStandalone( const std::string& name);41 GSStandalone(); 41 42 ~GSStandalone(); 42 43 43 void activate();44 void deactivate();45 void update(const Clock& time);46 47 44 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.