| 
                Last change
                  on this file since 6484 was
                  6281,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
trunk: make usage of the Virtual-derivates 
 
           | 
        
        | 
            File size:
            735 bytes
           | 
      
      
        
  | Line |   | 
|---|
| 1 | #ifndef _TEST_ENTITY_H | 
|---|
| 2 | #define _TEST_ENTITY_H | 
|---|
| 3 |  | 
|---|
| 4 | #include "world_entity.h" | 
|---|
| 5 | #include "physics_interface.h" | 
|---|
| 6 |  | 
|---|
| 7 | class MD2Loader; | 
|---|
| 8 | class MD2Model; | 
|---|
| 9 | class MD2Model2; | 
|---|
| 10 | struct t3DModel; | 
|---|
| 11 | class Material; | 
|---|
| 12 | class TiXmlElement; | 
|---|
| 13 |  | 
|---|
| 14 | class TestEntity : public WorldEntity, public PhysicsInterface | 
|---|
| 15 | { | 
|---|
| 16 |   friend class World; | 
|---|
| 17 |  | 
|---|
| 18 |  public: | 
|---|
| 19 |   TestEntity (); | 
|---|
| 20 |   TestEntity(const TiXmlElement* root); | 
|---|
| 21 |   virtual ~TestEntity (); | 
|---|
| 22 |  | 
|---|
| 23 |   void init(); | 
|---|
| 24 |   void loadParams(const TiXmlElement* root); | 
|---|
| 25 |  | 
|---|
| 26 |   void setAnim(int animationIndex); | 
|---|
| 27 |  | 
|---|
| 28 |   virtual void tick (float time); | 
|---|
| 29 |   virtual void collidesWith(WorldEntity* entity, const Vector& location); | 
|---|
| 30 |  | 
|---|
| 31 |  private: | 
|---|
| 32 |   /* TESTING TESTING TESTING */ | 
|---|
| 33 |   t3DModel* model; | 
|---|
| 34 |   MD2Model* md2Model; | 
|---|
| 35 |   Material* material; | 
|---|
| 36 |  | 
|---|
| 37 | }; | 
|---|
| 38 |  | 
|---|
| 39 | #endif /* _TEST_ENTITY_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.