Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

update2

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