Changeset 6194
- Timestamp:
- Dec 2, 2009, 1:34:55 PM (15 years ago)
- Location:
- code/branches/presentation2/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/CMakeLists.txt
r6150 r6194 86 86 TOLUA_FILES 87 87 CommandExecutor.h 88 ConfigFileManager.h 88 89 Game.h 89 90 Loader.h -
code/branches/presentation2/src/libraries/core/ConfigFileManager.h
r6105 r6194 40 40 #include "util/Singleton.h" 41 41 42 // tolua_begin 42 43 namespace orxonox 43 44 { 45 // tolua_end 44 46 // Use int as config file type to have an arbitrary number of files 45 47 struct ConfigFileType : OrxEnum<ConfigFileType> … … 54 56 }; 55 57 56 _CoreExport bool config(const std::string& classname, const std::string& varname, const std::string& value); 58 _CoreExport bool config(const std::string& classname, const std::string& varname, const std::string& value); // tolua_export 57 59 _CoreExport bool tconfig(const std::string& classname, const std::string& varname, const std::string& value); 58 60 _CoreExport void reloadConfig(); … … 319 321 static ConfigFileManager* singletonPtr_s; 320 322 }; 321 } 323 } // tolua_export 322 324 323 325 #endif /* _ConfigFileManager_H__ */ -
code/branches/presentation2/src/orxonox/sound/SoundManager.h
r6186 r6194 80 80 void pauseAmbientSound(AmbientSound* ambient); 81 81 82 void setVolume(float vol, SoundType::Value type); // tolua_export82 void setVolume(float vol, SoundType::Value type); 83 83 float getVolume(SoundType::Value type); // tolua_export 84 84
Note: See TracChangeset
for help on using the changeset viewer.