Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/atmospheric_engine/src/lib/graphics/effects/volfog_effect.h @ 8471

Last change on this file since 8471 was 8457, checked in by amaechler, 18 years ago

atmospheric: void etc bugfixes

File size: 538 bytes
Line 
1/**
2* @file volfog_effect.h
3*/
4
5#ifndef _VOLFOG_EFFECT
6#define _VOLFOG_EFFECT
7
8#include "vector.h"
9
10#include "weather_effect.h"
11
12class VolFogEffect : public WeatherEffect {
13public:
14    VolFogEffect(const TiXmlElement* root = NULL);
15    virtual ~VolFogEffect();
16
17    virtual void loadParams(const TiXmlElement* root);
18
19    virtual void init();
20
21    virtual void activate();
22    virtual void deactivate();
23
24    virtual void draw() const;
25    virtual void tick(float dt);
26
27private:
28    GLfloat fogColor[4];
29
30};
31
32#endif  /* _VOLFOG_EFFECT */
Note: See TracBrowser for help on using the repository browser.