Changeset 3106 for code/branches/ggz/src/orxonox/gamestates/GSClient.h
- Timestamp:
- May 28, 2009, 5:18:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ggz/src/orxonox/gamestates/GSClient.h
r3000 r3106 30 30 #define _GSClient_H__ 31 31 32 #include "SpecialConfig.h" 32 33 #include "OrxonoxPrereqs.h" 33 34 #include "network/NetworkPrereqs.h" 34 35 #include "GSLevel.h" 35 36 #include "GSGraphics.h" 36 #ifdef HAS_GGZ37 #include "GGZClient.h"38 #endif /* HAS_GGZ */39 37 40 38 namespace orxonox 41 39 { 40 #ifdef GGZMOD_FOUND 41 class _OrxonoxExport GGZClient; 42 #endif /* GGZMOD_FOUND */ 43 42 44 class _OrxonoxExport GSClient : public GameState<GSGraphics>, public GSLevel 43 45 { … … 45 47 GSClient(); 46 48 ~GSClient(); 47 48 49 49 50 private: … … 53 54 54 55 Client* client_; 55 #ifdef HAS_GGZ56 #ifdef GGZMOD_FOUND 56 57 GGZClient* ggzClient; 57 #endif /* HAS_GGZ */ 58 58 #endif /* GGZMOD_FOUND */ 59 59 }; 60 60 }
Note: See TracChangeset
for help on using the changeset viewer.