Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/tags/0.3.2_alpha/src/world_entities/test_entity.h @ 5503

Last change on this file since 5503 was 5503, checked in by bensch, 19 years ago

oronox/tags: new Release of orxonox 0.3.2_alpha.

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