Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/md2_loader/src/world_entities/test_entity.h @ 4151

Last change on this file since 4151 was 4151, checked in by patrick, 19 years ago

orxonox/branches/md2_loader: added the TestEntity class to test the md2loader functionalities

File size: 456 bytes
Line 
1#ifndef _TEST_ENTITY_H
2#define _TEST_ENTITY_H
3
4#include "world_entity.h"
5
6
7class TestEntity : public WorldEntity
8{
9  friend class World;
10
11 public:
12  TestEntity ();
13  virtual ~TestEntity ();
14
15 
16  virtual void tick (float time);
17  virtual void hit (WorldEntity* weapon, Vector* loc);
18  virtual void destroy ();
19  virtual void collide (WorldEntity* other,  Uint32 ownhitflags, Uint32 otherhitflags);
20  virtual void draw ();
21
22};
23
24#endif /* _TEST_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.