Changeset 9638 for code/branches/core6/src/modules/weapons/projectiles
- Timestamp:
 - Aug 11, 2013, 5:52:29 PM (12 years ago)
 - Location:
 - code/branches/core6/src/modules/weapons/projectiles
 - Files:
 - 
          
- 6 edited
 
- 
          BillboardProjectile.cc (modified) (1 diff)
 - 
          LightningGunProjectile.cc (modified) (1 diff)
 - 
          ParticleProjectile.cc (modified) (1 diff)
 - 
          Projectile.cc (modified) (1 diff)
 - 
          Rocket.cc (modified) (1 diff)
 - 
          SimpleRocket.cc (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
code/branches/core6/src/modules/weapons/projectiles/BillboardProjectile.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(BillboardProjectile);42 RegisterClass(BillboardProjectile); 43 43 44 44 BillboardProjectile::BillboardProjectile(Context* context) : Projectile(context)  - 
        
code/branches/core6/src/modules/weapons/projectiles/LightningGunProjectile.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(LightningGunProjectile);42 RegisterClass(LightningGunProjectile); 43 43 44 44 LightningGunProjectile::LightningGunProjectile(Context* context) : BillboardProjectile(context)  - 
        
code/branches/core6/src/modules/weapons/projectiles/ParticleProjectile.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(ParticleProjectile);43 RegisterClass(ParticleProjectile); 44 44 45 45 ParticleProjectile::ParticleProjectile(Context* context) : BillboardProjectile(context)  - 
        
code/branches/core6/src/modules/weapons/projectiles/Projectile.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(Projectile);46 RegisterClass(Projectile); 47 47 48 48 Projectile::Projectile(Context* context) : MovableEntity(context), BasicProjectile()  - 
        
code/branches/core6/src/modules/weapons/projectiles/Rocket.cc
r9629 r9638 51 51 namespace orxonox 52 52 { 53 CreateFactory(Rocket);53 RegisterClass(Rocket); 54 54 55 55 /**  - 
        
code/branches/core6/src/modules/weapons/projectiles/SimpleRocket.cc
r9629 r9638 52 52 namespace orxonox 53 53 { 54 CreateFactory(SimpleRocket);54 RegisterClass(SimpleRocket); 55 55 56 56 const float SimpleRocket::FUEL_PERCENTAGE = 0.8f;  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






