Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 26, 2006, 4:13:08 PM (19 years ago)
Author:
hdavid
Message:

branches/atmospheric_engine: renamed classes to WeatherEffect and SunEffect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/atmospheric_engine/src/lib/graphics/effects/atmospheric_engine.cc

    r7379 r7381  
    1818#include "util/loading/resource_manager.h"
    1919
    20 
    2120#include "effects/fog_effect.h"
    22 
    23 
    2421
    2522#include "util/loading/load_param.h"
     
    6158void AtmosphericEngine::loadParams(const TiXmlElement* root)
    6259{
    63   LoadParamXML(root, "WeatherEffects", this, AtmosphericEngine, loadWeatherEffects);
    64   LoadParamXML(root, "SunEffects", this, AtmosphericEngine, loadSunEffects);
     60  LoadParamXML(root, "WeatherEffect", this, AtmosphericEngine, loadWeatherEffect);
     61  LoadParamXML(root, "SunEffect", this, AtmosphericEngine, loadSunEffect);
    6562}
    6663
     
    6865 * @param root The XML-element to load WeatherEffects from
    6966 */
    70 void AtmosphericEngine::loadWeatherEffects(const TiXmlElement* root)
     67void AtmosphericEngine::loadWeatherEffect(const TiXmlElement* root)
    7168{
    7269  LOAD_PARAM_START_CYCLE(root, element);
     
    8178 * @param root The XML-element to load SunEffects from
    8279 */
    83 void AtmosphericEngine::loadSunEffects(const TiXmlElement* root)
     80void AtmosphericEngine::loadSunEffect(const TiXmlElement* root)
    8481{
    8582  LOAD_PARAM_START_CYCLE(root, element);
Note: See TracChangeset for help on using the changeset viewer.