Changeset 6261 for code/branches/presentation2
- Timestamp:
- Dec 6, 2009, 9:47:42 PM (15 years ago)
- Location:
- code/branches/presentation2/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/CMakeLists.txt
r6259 r6261 88 88 ConfigFileManager.h 89 89 Game.h 90 GameMode.h 90 91 Loader.h 91 92 LuaState.h -
code/branches/presentation2/src/libraries/core/GameMode.h
r5929 r6261 37 37 #include "CorePrereqs.h" 38 38 39 // tolua_begin 39 40 namespace orxonox 40 41 { 41 42 class _CoreExport GameMode 42 43 { 44 // tolua_end 43 45 friend class Core; 44 46 45 47 public: 48 // tolua_begin 46 49 static bool showsGraphics() { return bShowsGraphics_s; } 47 50 static bool playsSound() { return bPlaysSound_s; } … … 50 53 static bool isStandalone() { return bIsStandalone_s; } 51 54 static bool isMaster() { return bIsMaster_s; } 55 // tolua_end 52 56 53 57 static void setPlaysSound (bool val) { bPlaysSound_s = val; } … … 72 76 static bool bIsStandalone_s; 73 77 static bool bIsMaster_s; 74 }; 75 } 78 }; // tolua_export 79 } // tolua_export 76 80 77 81 #endif /* _GameMode_H__ */
Note: See TracChangeset
for help on using the changeset viewer.