- Timestamp:
- Apr 26, 2006, 4:17:20 PM (19 years ago)
- Location:
- branches/atmospheric_engine/src/lib/graphics/effects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/atmospheric_engine/src/lib/graphics/effects/weather_effect.cc
r7381 r7382 26 26 * @param root The XML-element to load the WeatherEffect from 27 27 */ 28 WeatherEffect s::WeatherEffect(const TiXmlElement* root)28 WeatherEffect::WeatherEffect(const TiXmlElement* root) 29 29 { 30 30 // this->setClassID(CL_WEATHER_EFFECT, "WeatherEffect"); … … 36 36 * destroys a WeatherEffects 37 37 */ 38 WeatherEffect s::~WeatherEffect()38 WeatherEffect::~WeatherEffect() 39 39 { 40 40 … … 70 70 * ticks the effect if there is any time dependancy 71 71 */ 72 void WeatherEffect s::tick(float dt)72 void WeatherEffect::tick(float dt) 73 73 {} 74 74 -
branches/atmospheric_engine/src/lib/graphics/effects/weather_effect.h
r7381 r7382 10 10 11 11 12 class WeatherEffect s: public BaseObject12 class WeatherEffect : public BaseObject 13 13 { 14 14 public: 15 WeatherEffect s(const TiXmlElement* root = NULL);15 WeatherEffect(const TiXmlElement* root = NULL); 16 16 virtual ~WeatherEffect(); 17 17
Note: See TracChangeset
for help on using the changeset viewer.