Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/test_entity.h @ 10236

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

another update :)

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