source:
orxonox.OLD/trunk/src/lib/graphics/effects/weather_effect.h
@
9468
Last change on this file since 9468 was 8495, checked in by bensch, 18 years ago | |
---|---|
File size: 618 bytes |
Rev | Line | |
---|---|---|
[7381] | 1 | /*! |
2 | * @file weather_effect.h | |
[8495] | 3 | * |
[7381] | 4 | */ |
5 | ||
6 | #ifndef _WEATHER_EFFECT_H | |
7 | #define _WEATHER_EFFECT_H | |
8 | ||
9 | #include "base_object.h" | |
10 | ||
11 | ||
[7382] | 12 | class WeatherEffect : public BaseObject |
[7381] | 13 | { |
14 | public: | |
[7382] | 15 | WeatherEffect(const TiXmlElement* root = NULL); |
[7381] | 16 | virtual ~WeatherEffect(); |
17 | ||
18 | virtual void loadParams(const TiXmlElement* root); | |
19 | ||
[8495] | 20 | virtual void init(); |
[7381] | 21 | |
[8495] | 22 | virtual void activate() = 0; |
23 | virtual void deactivate() = 0; | |
[7381] | 24 | |
25 | virtual void draw() const; | |
26 | virtual void tick(float dt); | |
27 | ||
[8495] | 28 | inline bool isActivated() const { return this->bActivated; } |
[7381] | 29 | |
30 | ||
31 | protected: | |
32 | bool bActivated; | |
33 | }; | |
34 | ||
35 | ||
36 | #endif /* _WEATHER_EFFECT */ |
Note: See TracBrowser
for help on using the repository browser.