Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/atmospheric_engine/src/lib/graphics/effects/weather_effects.h @ 7379

Last change on this file since 7379 was 7379, checked in by hdavid, 18 years ago

branches/atmospheric_engine: basic framework

File size: 626 bytes
Line 
1/*!
2 * @file weather_effects.h
3 * 
4 */
5
6#ifndef _WEATHER_EFFECTS_H
7#define _WEATHER_EFFECTS_H
8
9#include "base_object.h"
10
11
12class WeatherEffects : public BaseObject
13{
14  public:
15    WeatherEffects(const TiXmlElement* root = NULL);
16    virtual ~WeatherEffects();
17
18    virtual void loadParams(const TiXmlElement* root);
19
20    virtual bool init();
21
22    virtual bool activate() = 0;
23    virtual bool deactivate() = 0;
24
25    virtual void draw() const;
26    virtual void tick(float dt);
27
28    inline bool isActivated() const { return this->bActivated; }
29
30
31  protected:
32    bool              bActivated;
33};
34
35
36#endif /* _WEATHER_EFFECTS */
Note: See TracBrowser for help on using the repository browser.