Changeset 7381 in orxonox.OLD for branches/atmospheric_engine/src/lib/graphics/effects/atmospheric_engine.cc
- Timestamp:
- Apr 26, 2006, 4:13:08 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/atmospheric_engine/src/lib/graphics/effects/atmospheric_engine.cc
r7379 r7381 18 18 #include "util/loading/resource_manager.h" 19 19 20 21 20 #include "effects/fog_effect.h" 22 23 24 21 25 22 #include "util/loading/load_param.h" … … 61 58 void AtmosphericEngine::loadParams(const TiXmlElement* root) 62 59 { 63 LoadParamXML(root, "WeatherEffect s", this, AtmosphericEngine, loadWeatherEffects);64 LoadParamXML(root, "SunEffect s", this, AtmosphericEngine, loadSunEffects);60 LoadParamXML(root, "WeatherEffect", this, AtmosphericEngine, loadWeatherEffect); 61 LoadParamXML(root, "SunEffect", this, AtmosphericEngine, loadSunEffect); 65 62 } 66 63 … … 68 65 * @param root The XML-element to load WeatherEffects from 69 66 */ 70 void AtmosphericEngine::loadWeatherEffect s(const TiXmlElement* root)67 void AtmosphericEngine::loadWeatherEffect(const TiXmlElement* root) 71 68 { 72 69 LOAD_PARAM_START_CYCLE(root, element); … … 81 78 * @param root The XML-element to load SunEffects from 82 79 */ 83 void AtmosphericEngine::loadSunEffect s(const TiXmlElement* root)80 void AtmosphericEngine::loadSunEffect(const TiXmlElement* root) 84 81 { 85 82 LOAD_PARAM_START_CYCLE(root, element);
Note: See TracChangeset
for help on using the changeset viewer.