- Timestamp:
- Jul 9, 2005, 12:51:04 AM (19 years ago)
- Location:
- orxonox/trunk/src/world_entities/weapons
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/weapons/weapon.cc
r4827 r4828 15 15 */ 16 16 17 #include "weapon.h" 17 18 #include "weapon_manager.h" 18 #include "weapon.h" 19 19 20 #include "vector.h" 20 21 #include "projectile.h" 21 22 #include "list.h" 22 #include " world.h"23 #include "state.h" 23 24 24 25 /** … … 32 33 this->setRelCoor(coordinate); 33 34 this->setRelDir(direction); 34 WorldInterface* wi = WorldInterface::getInstance(); 35 this->worldEntities = wi->getEntityList(); 35 this->worldEntities = State::getWorldEntityList(); 36 36 } 37 37 -
orxonox/trunk/src/world_entities/weapons/weapon_manager.cc
r4826 r4828 19 19 #include "weapon_manager.h" 20 20 #include "weapon.h" 21 #include "stdincl.h" 22 #include "world_entity.h" 21 23 22 #include "vector.h" 24 #include "model.h"25 #include "projectile.h"26 23 #include "list.h" 27 #include "world.h"28 24 29 25 using namespace std;
Note: See TracChangeset
for help on using the changeset viewer.