Changeset 8515 in orxonox.OLD
- Timestamp:
- Jun 16, 2006, 1:40:28 AM (18 years ago)
- Location:
- branches/bsp_model/src/world_entities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/world_entities/npcs/generic_npc.cc
r8514 r8515 134 134 if( likely(this->getModel(0) != NULL)) 135 135 ((InteractiveModel*)this->getModel(0))->tick(time); 136 137 136 } 138 137 … … 142 141 { 143 142 int randi = (int)(5.0f * (float)rand()/(float)RAND_MAX); 144 145 PRINTF(0)("randi = %i\n", randi);146 143 147 144 if( randi == 1) -
branches/bsp_model/src/world_entities/npcs/generic_npc.h
r8514 r8515 18 18 class GenericNPC : public NPC 19 19 { 20 friend class World;21 22 20 public: 23 21 GenericNPC(const TiXmlElement* root); -
branches/bsp_model/src/world_entities/test_entity.h
r7113 r8515 15 15 class TestEntity : public WorldEntity, public PhysicsInterface 16 16 { 17 friend class World;18 19 17 public: 20 18 TestEntity ();
Note: See TracChangeset
for help on using the changeset viewer.