Changeset 5427 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Oct 24, 2005, 6:06:06 PM (19 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/npc.cc
r5357 r5427 23 23 #include "state.h" 24 24 #include "list.h" 25 #include "stdlibincl.h" 25 26 26 27 using namespace std; … … 33 34 this->loadModelWithScale("models/ships/bolido.obj", 2); 34 35 35 this->randomRotAxis = VECTOR_RAND(1);36 this->randomRotAxis = VECTOR_RAND(1); 36 37 } 37 38 -
trunk/src/world_entities/npc2.cc
r5363 r5427 24 24 #include "state.h" 25 25 #include "list.h" 26 #include "stdlibincl.h" 26 27 27 28 using namespace std; -
trunk/src/world_entities/test_entity.cc
r5419 r5427 78 78 79 79 80 void TestEntity::collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags) {}81 80 82 81 -
trunk/src/world_entities/test_entity.h
r5087 r5427 24 24 virtual void hit (WorldEntity* weapon, Vector* loc); 25 25 virtual void destroy (); 26 virtual void collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags);27 26 virtual void collidesWith(WorldEntity* entity, const Vector& location); 28 27 virtual void draw ();
Note: See TracChangeset
for help on using the changeset viewer.