Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/blackscreen.h @ 10212

Last change on this file since 10212 was 10212, checked in by gfilip, 17 years ago

blackscreen troubles

File size: 570 bytes
Line 
1#ifndef _BLACKSCREEN_H
2#define _BLACKSCREEN_H
3
4#include "world_entity.h"
5
6
7class TiXmlElement;
8class Material;
9
10class blackscreen : public WorldEntity
11{
12    ObjectListDeclaration(blackscreen);
13
14  private:
15    float i;
16    bool state;
17    Material*       material;
18
19  public:
20    blackscreen ();
21    blackscreen(const TiXmlElement* root);
22    virtual ~blackscreen ();
23
24    void init();
25    virtual void loadParams(const TiXmlElement* root);
26
27    void changeState (bool);
28    virtual void tick (float time);
29    virtual void draw() const;
30
31};
32
33#endif /* _BLACKSCREEN_H */
Note: See TracBrowser for help on using the repository browser.