Changeset 8495 in orxonox.OLD for trunk/src/lib/graphics/effects/weather_effect.h
- Timestamp:
- Jun 15, 2006, 9:50:56 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/effects/weather_effect.h
r7810 r8495 1 1 /*! 2 2 * @file weather_effect.h 3 * 3 * 4 4 */ 5 5 … … 18 18 virtual void loadParams(const TiXmlElement* root); 19 19 20 virtual boolinit();20 virtual void init(); 21 21 22 virtual boolactivate() = 0;23 virtual booldeactivate() = 0;22 virtual void activate() = 0; 23 virtual void deactivate() = 0; 24 24 25 25 virtual void draw() const; 26 26 virtual void tick(float dt); 27 27 28 inline bool isActivated() const { return this->bActivated; }28 inline bool isActivated() const { return this->bActivated; } 29 29 30 30
Note: See TracChangeset
for help on using the changeset viewer.