Changeset 6434 in orxonox.OLD for trunk/src/world_entities/weapons
- Timestamp:
- Jan 8, 2006, 2:00:48 AM (19 years ago)
- Location:
- trunk/src/world_entities/weapons
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/weapons/aiming_turret.cc
r6426 r6434 19 19 #include "weapon_manager.h" 20 20 #include "aim.h" 21 #include " projectile.h"21 #include "world_entities/projectiles/projectile.h" 22 22 23 23 #include "model.h" -
trunk/src/world_entities/weapons/cannon.cc
r6074 r6434 25 25 #include "world_entity.h" 26 26 #include "model.h" 27 #include " test_bullet.h"27 #include "world_entities/projectiles/projectile.h" 28 28 #include "weapon_manager.h" 29 29 #include "factory.h" -
trunk/src/world_entities/weapons/targeting_turret.cc
r6426 r6434 19 19 #include "weapon_manager.h" 20 20 #include "aim.h" 21 #include " projectile.h"21 #include "world_entities/projectiles/projectile.h" 22 22 23 23 #include "model.h" … … 119 119 void TargetingTurret::tick(float dt) 120 120 { 121 121 122 122 this->target->tick(dt); 123 123 } -
trunk/src/world_entities/weapons/test_gun.cc
r6222 r6434 22 22 23 23 #include "test_gun.h" 24 #include "world_entities/projectiles/projectile.h" 24 25 25 26 #include "world_entity.h" 26 27 #include "static_model.h" 27 #include "test_bullet.h"28 28 #include "weapon_manager.h" 29 29 #include "factory.h" -
trunk/src/world_entities/weapons/turret.cc
r6306 r6434 18 18 19 19 #include "weapon_manager.h" 20 #include " projectile.h"20 #include "world_entities/projectiles/projectile.h" 21 21 22 22 #include "model.h" -
trunk/src/world_entities/weapons/weapon.cc
r6433 r6434 22 22 23 23 #include "fast_factory.h" 24 #include " projectile.h"24 #include "world_entities/projectiles/projectile.h" 25 25 26 26 #include "resource_manager.h"
Note: See TracChangeset
for help on using the changeset viewer.