Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/test_entity.h @ 4245

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

orxonox/trunk: merged back the md2_loader branche manualy (a full merge was impossible).

File size: 669 bytes
Line 
1#ifndef _TEST_ENTITY_H
2#define _TEST_ENTITY_H
3
4#include "world_entity.h"
5
6class MD2Loader;
7class MD2Model;
8class MD2Model2;
9struct t3DModel;
10class Material;
11
12class TestEntity : public WorldEntity
13{
14  friend class World;
15
16 public:
17  TestEntity ();
18  virtual ~TestEntity ();
19
20 
21  virtual void tick (float time);
22  virtual void hit (WorldEntity* weapon, Vector* loc);
23  virtual void destroy ();
24  virtual void collide (WorldEntity* other,  Uint32 ownhitflags, Uint32 otherhitflags);
25  virtual void draw ();
26
27 private:
28  /* TESTING TESTING TESTING */
29  t3DModel* model;
30  MD2Model* md2Model;
31  MD2Model2* md2Model2;
32  Material* material;
33
34};
35
36#endif /* _TEST_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.