Changeset 9925 in orxonox.OLD for branches/network/src/world_entities/projectiles
- Timestamp:
- Nov 9, 2006, 7:20:19 PM (18 years ago)
- Location:
- branches/network/src/world_entities/projectiles
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/projectiles/bomb.cc
r9869 r9925 25 25 #include "debug.h" 26 26 27 #include "class_id_DEPRECATED.h" 28 ObjectListDefinition ID(Bomb, CL_BOMB);27 28 ObjectListDefinition(Bomb); 29 29 CREATE_FAST_FACTORY_STATIC(Bomb); 30 30 -
branches/network/src/world_entities/projectiles/boomerang_projectile.cc
r9869 r9925 26 26 #include "debug.h" 27 27 28 #include "class_id_DEPRECATED.h" 29 ObjectListDefinition ID(BoomerangProjectile, CL_BOOMERANG_PROJECTILE);28 29 ObjectListDefinition(BoomerangProjectile); 30 30 CREATE_FAST_FACTORY_STATIC(BoomerangProjectile); 31 31 -
branches/network/src/world_entities/projectiles/guided_missile.cc
r9869 r9925 25 25 #include "debug.h" 26 26 27 #include "class_id_DEPRECATED.h" 28 ObjectListDefinition ID(GuidedMissile, CL_GUIDED_MISSILE);27 28 ObjectListDefinition(GuidedMissile); 29 29 CREATE_FAST_FACTORY_STATIC(GuidedMissile); 30 30 -
branches/network/src/world_entities/projectiles/hyperblast.cc
r9869 r9925 25 25 #include "debug.h" 26 26 27 #include "class_id_DEPRECATED.h" 28 ObjectListDefinition ID(Hyperblast, CL_HYPERBLAST);27 28 ObjectListDefinition(Hyperblast); 29 29 CREATE_FAST_FACTORY_STATIC(Hyperblast); 30 30 -
branches/network/src/world_entities/projectiles/laser.cc
r9869 r9925 28 28 29 29 30 #include "class_id_DEPRECATED.h" 30 31 31 ObjectListDefinition(Laser); 32 32 CREATE_FAST_FACTORY_STATIC(Laser); -
branches/network/src/world_entities/projectiles/rail_projectile.cc
r9869 r9925 28 28 29 29 30 #include "class_id_DEPRECATED.h" 31 ObjectListDefinition ID(RailProjectile, CL_RAIL_PROJECTILE);30 31 ObjectListDefinition(RailProjectile); 32 32 CREATE_FAST_FACTORY_STATIC(RailProjectile); 33 33 -
branches/network/src/world_entities/projectiles/rocket.cc
r9869 r9925 25 25 #include "debug.h" 26 26 27 #include "class_id_DEPRECATED.h" 28 ObjectListDefinition ID(Rocket, CL_ROCKET);27 28 ObjectListDefinition(Rocket); 29 29 CREATE_FAST_FACTORY_STATIC(Rocket); 30 30 -
branches/network/src/world_entities/projectiles/test_bullet.cc
r9869 r9925 24 24 #include "debug.h" 25 25 26 #include "class_id_DEPRECATED.h" 27 ObjectListDefinition ID(TestBullet, CL_TEST_BULLET);26 27 ObjectListDefinition(TestBullet); 28 28 CREATE_FAST_FACTORY_STATIC(TestBullet); 29 29
Note: See TracChangeset
for help on using the changeset viewer.