Last change
on this file since 7699 was
7679,
checked in by amaechler, 19 years ago
|
branches/atmospheric_engine: cloud and lightening files
|
File size:
543 bytes
|
Line | |
---|
1 | /** |
---|
2 | * @file cloud_effect.h |
---|
3 | */ |
---|
4 | |
---|
5 | #ifndef _CLOUD_EFFECT |
---|
6 | #define _CLOUD_EFFECT |
---|
7 | |
---|
8 | #include "vector.h" |
---|
9 | #include "vector2D.h" |
---|
10 | |
---|
11 | #include "weather_effect.h" |
---|
12 | |
---|
13 | #include "sound_buffer.h" |
---|
14 | #include "sound_source.h" |
---|
15 | |
---|
16 | class CloudEffect : public WeatherEffect |
---|
17 | { |
---|
18 | public: |
---|
19 | CloudEffect(const TiXmlElement* root = NULL); |
---|
20 | virtual ~CloudEffect(); |
---|
21 | |
---|
22 | virtual void loadParams(const TiXmlElement* root); |
---|
23 | |
---|
24 | virtual bool init(); |
---|
25 | |
---|
26 | virtual bool activate(); |
---|
27 | virtual bool deactivate(); |
---|
28 | |
---|
29 | virtual void tick(float dt); |
---|
30 | |
---|
31 | |
---|
32 | private: |
---|
33 | |
---|
34 | }; |
---|
35 | |
---|
36 | #endif /* _CLOUD_EFFECT */ |
---|
Note: See
TracBrowser
for help on using the repository browser.