Changeset 9715 in orxonox.OLD for branches/new_class_id/src/world_entities/projectiles
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (18 years ago)
- Location:
- branches/new_class_id/src/world_entities/projectiles
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/world_entities/projectiles/bomb.cc
r9709 r9715 26 26 27 27 #include "class_id.h" 28 NewObjectListDefinitionID(Bomb, CL_BOMB);28 ObjectListDefinitionID(Bomb, CL_BOMB); 29 29 CREATE_FAST_FACTORY_STATIC(Bomb); 30 30 -
branches/new_class_id/src/world_entities/projectiles/bomb.h
r9709 r9715 17 17 class Bomb : public Projectile 18 18 { 19 NewObjectListDeclaration(Bomb);19 ObjectListDeclaration(Bomb); 20 20 public: 21 21 Bomb(const TiXmlElement* root = NULL); -
branches/new_class_id/src/world_entities/projectiles/boomerang_projectile.cc
r9709 r9715 27 27 28 28 #include "class_id.h" 29 NewObjectListDefinitionID(BoomerangProjectile, CL_BOOMERANG_PROJECTILE);29 ObjectListDefinitionID(BoomerangProjectile, CL_BOOMERANG_PROJECTILE); 30 30 CREATE_FAST_FACTORY_STATIC(BoomerangProjectile); 31 31 -
branches/new_class_id/src/world_entities/projectiles/boomerang_projectile.h
r9709 r9715 17 17 class BoomerangProjectile : public Projectile 18 18 { 19 NewObjectListDeclaration(BoomerangProjectile);19 ObjectListDeclaration(BoomerangProjectile); 20 20 public: 21 21 BoomerangProjectile (); -
branches/new_class_id/src/world_entities/projectiles/guided_missile.cc
r9709 r9715 26 26 27 27 #include "class_id.h" 28 NewObjectListDefinitionID(GuidedMissile, CL_GUIDED_MISSILE);28 ObjectListDefinitionID(GuidedMissile, CL_GUIDED_MISSILE); 29 29 CREATE_FAST_FACTORY_STATIC(GuidedMissile); 30 30 -
branches/new_class_id/src/world_entities/projectiles/guided_missile.h
r9709 r9715 16 16 class GuidedMissile : public Projectile 17 17 { 18 NewObjectListDeclaration(GuidedMissile);18 ObjectListDeclaration(GuidedMissile); 19 19 public: 20 20 GuidedMissile (); -
branches/new_class_id/src/world_entities/projectiles/hyperblast.cc
r9709 r9715 26 26 27 27 #include "class_id.h" 28 NewObjectListDefinitionID(Hyperblast, CL_HYPERBLAST);28 ObjectListDefinitionID(Hyperblast, CL_HYPERBLAST); 29 29 CREATE_FAST_FACTORY_STATIC(Hyperblast); 30 30 -
branches/new_class_id/src/world_entities/projectiles/hyperblast.h
r9709 r9715 17 17 class Hyperblast : public Projectile 18 18 { 19 NewObjectListDeclaration(Hyperblast);19 ObjectListDeclaration(Hyperblast); 20 20 public: 21 21 Hyperblast (); -
branches/new_class_id/src/world_entities/projectiles/laser.cc
r9709 r9715 29 29 30 30 #include "class_id.h" 31 NewObjectListDefinition(Laser);31 ObjectListDefinition(Laser); 32 32 CREATE_FAST_FACTORY_STATIC(Laser); 33 33 -
branches/new_class_id/src/world_entities/projectiles/laser.h
r9709 r9715 17 17 class Laser : public Projectile 18 18 { 19 NewObjectListDeclaration(Laser);19 ObjectListDeclaration(Laser); 20 20 public: 21 21 Laser (); -
branches/new_class_id/src/world_entities/projectiles/projectile.cc
r9705 r9715 26 26 #include "debug.h" 27 27 28 NewObjectListDefinition(Projectile);28 ObjectListDefinition(Projectile); 29 29 30 30 /** -
branches/new_class_id/src/world_entities/projectiles/projectile.h
r9709 r9715 18 18 class Projectile : public WorldEntity 19 19 { 20 NewObjectListDeclaration(Projectile);20 ObjectListDeclaration(Projectile); 21 21 public: 22 22 Projectile (); -
branches/new_class_id/src/world_entities/projectiles/rail_projectile.cc
r9709 r9715 29 29 30 30 #include "class_id.h" 31 NewObjectListDefinitionID(RailProjectile, CL_RAIL_PROJECTILE);31 ObjectListDefinitionID(RailProjectile, CL_RAIL_PROJECTILE); 32 32 CREATE_FAST_FACTORY_STATIC(RailProjectile); 33 33 -
branches/new_class_id/src/world_entities/projectiles/rail_projectile.h
r9709 r9715 17 17 class RailProjectile : public Projectile 18 18 { 19 NewObjectListDeclaration(RailProjectile);19 ObjectListDeclaration(RailProjectile); 20 20 public: 21 21 RailProjectile (); -
branches/new_class_id/src/world_entities/projectiles/rocket.cc
r9709 r9715 26 26 27 27 #include "class_id.h" 28 NewObjectListDefinitionID(Rocket, CL_ROCKET);28 ObjectListDefinitionID(Rocket, CL_ROCKET); 29 29 CREATE_FAST_FACTORY_STATIC(Rocket); 30 30 -
branches/new_class_id/src/world_entities/projectiles/rocket.h
r9709 r9715 15 15 class Rocket : public Projectile 16 16 { 17 NewObjectListDeclaration(Rocket);17 ObjectListDeclaration(Rocket); 18 18 19 19 public: -
branches/new_class_id/src/world_entities/projectiles/test_bullet.cc
r9709 r9715 25 25 26 26 #include "class_id.h" 27 NewObjectListDefinitionID(TestBullet, CL_TEST_BULLET);27 ObjectListDefinitionID(TestBullet, CL_TEST_BULLET); 28 28 CREATE_FAST_FACTORY_STATIC(TestBullet); 29 29 -
branches/new_class_id/src/world_entities/projectiles/test_bullet.h
r9709 r9715 17 17 class TestBullet : public Projectile 18 18 { 19 NewObjectListDeclaration(TestBullet);19 ObjectListDeclaration(TestBullet); 20 20 21 21 public:
Note: See TracChangeset
for help on using the changeset viewer.