Changeset 4827 in orxonox.OLD for orxonox/trunk/src/world_entities/weapons/weapon.cc
- Timestamp:
- Jul 9, 2005, 12:48:50 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/weapons/weapon.cc
r4826 r4827 17 17 #include "weapon_manager.h" 18 18 #include "weapon.h" 19 #include "stdincl.h"20 #include "world_entity.h"21 19 #include "vector.h" 22 #include "model.h"23 20 #include "projectile.h" 24 21 #include "list.h" … … 31 28 */ 32 29 Weapon::Weapon (PNode* parent, const Vector& coordinate, const Quaternion& direction) 33 : WorldEntity()34 30 { 35 31 parent->addChild(this, PNODE_ALL); … … 38 34 WorldInterface* wi = WorldInterface::getInstance(); 39 35 this->worldEntities = wi->getEntityList(); 40 41 this->objectComponent1 = NULL;42 this->objectComponent2 = NULL;43 this->objectComponent3 = NULL;44 45 this->animation1 = NULL;46 this->animation2 = NULL;47 this->animation3 = NULL;48 36 } 49 37
Note: See TracChangeset
for help on using the changeset viewer.