source:
orxonox.OLD/trunk/src/world_entities/test_entity.h
@
10293
Last change on this file since 10293 was 9927, checked in by patrick, 18 years ago | |
---|---|
File size: 450 bytes |
Rev | Line | |
---|---|---|
[4245] | 1 | #ifndef _TEST_ENTITY_H |
2 | #define _TEST_ENTITY_H | |
3 | ||
4 | #include "world_entity.h" | |
5 | ||
[6222] | 6 | class TiXmlElement; |
[4245] | 7 | |
[9927] | 8 | |
9 | class TestEntity : public WorldEntity | |
[4245] | 10 | { |
[9927] | 11 | ObjectListDeclaration(TestEntity); |
[4245] | 12 | |
[9927] | 13 | public: |
14 | TestEntity (); | |
15 | TestEntity(const TiXmlElement* root); | |
16 | virtual ~TestEntity (); | |
[6222] | 17 | |
[9927] | 18 | void init(); |
19 | virtual void loadParams(const TiXmlElement* root); | |
[4488] | 20 | |
[7069] | 21 | |
[9927] | 22 | virtual void tick (float time); |
23 | virtual void draw() const; | |
[4245] | 24 | |
25 | }; | |
26 | ||
27 | #endif /* _TEST_ENTITY_H */ |
Note: See TracBrowser
for help on using the repository browser.