Changeset 8515 in orxonox.OLD for branches/bsp_model/src/world_entities/npcs
- Timestamp:
- Jun 16, 2006, 1:40:28 AM (19 years ago)
- Location:
- branches/bsp_model/src/world_entities/npcs
- Files:
-
- 2 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);
Note: See TracChangeset
for help on using the changeset viewer.