Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 8778 was 8778, checked in by patrick, 18 years ago

trunk: test model die function reimplemented

File size: 833 bytes
RevLine 
[4245]1#ifndef _TEST_ENTITY_H
2#define _TEST_ENTITY_H
3
4#include "world_entity.h"
[4397]5#include "physics_interface.h"
[4245]6
7class MD2Loader;
8class MD2Model;
9class MD2Model2;
10struct t3DModel;
11class Material;
[6222]12class TiXmlElement;
[7071]13class WorldEntity;
[4245]14
[6278]15class TestEntity : public WorldEntity, public PhysicsInterface
[4245]16{
17 public:
18  TestEntity ();
[6222]19  TestEntity(const TiXmlElement* root);
[4245]20  virtual ~TestEntity ();
21
[6222]22  void init();
[6512]23  virtual void loadParams(const TiXmlElement* root);
[6222]24
[7071]25  void setAnim(int animationIndex, int animPlaybackMode);
[4488]26
[8778]27  virtual void destroy();
[7069]28
[4245]29  virtual void tick (float time);
[5087]30  virtual void collidesWith(WorldEntity* entity, const Vector& location);
[4245]31
32 private:
33  /* TESTING TESTING TESTING */
34  t3DModel* model;
35  MD2Model* md2Model;
36  Material* material;
37
[7071]38  WorldEntity* lastCollided;
39
[7113]40  bool bDeath;
[4245]41};
42
43#endif /* _TEST_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.