- 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/GSClient.h
r2907 r2908 31 31 32 32 #include "OrxonoxPrereqs.h" 33 #include "core/GameState.h"34 33 #include "network/NetworkPrereqs.h" 34 #include "GSLevel.h" 35 #include "GSGraphics.h" 35 36 36 37 namespace orxonox 37 38 { 38 class _OrxonoxExport GSClient : public GameState 39 class _OrxonoxExport GSClient : public GameState<GSGraphics>, public GSLevel 39 40 { 40 41 public: 41 GSClient( const std::string& name);42 GSClient(); 42 43 ~GSClient(); 43 44 44 void activate();45 void deactivate();46 void update(const Clock& time);47 45 48 46 private: 47 void enter(); 48 void leave(); 49 void ticked(const Clock& time); 50 49 51 Client* client_; 50 52 };
Note: See TracChangeset
for help on using the changeset viewer.