Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 9869 was 9869, checked in by bensch, 18 years ago

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 889 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;
12class TiXmlElement;
13class WorldEntity;
14
15class TestEntity : public WorldEntity, public PhysicsInterface
16{
17  ObjectListDeclaration(TestEntity);
18 public:
19  TestEntity ();
20  TestEntity(const TiXmlElement* root);
21  virtual ~TestEntity ();
22
23  void init();
24  virtual void loadParams(const TiXmlElement* root);
25
26  void setAnim(int animationIndex, int animPlaybackMode);
27
28  virtual void destroy(WorldEntity* killer);
29
30  virtual void tick (float time);
31  virtual void collidesWith(WorldEntity* entity, const Vector& location);
32
33 private:
34  /* TESTING TESTING TESTING */
35  t3DModel* model;
36  MD2Model* md2Model;
37  Material* material;
38
39  WorldEntity* lastCollided;
40
41  bool bDeath;
42};
43
44#endif /* _TEST_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.