Changeset 10713 for code/branches/fabienHS15/src/modules/weapons/munitions
- Timestamp:
- Oct 26, 2015, 11:34:23 PM (9 years ago)
- Location:
- code/branches/fabienHS15/src/modules/weapons/munitions
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/fabienHS15/src/modules/weapons/munitions/FusionMunition.cc
r10688 r10713 47 47 this->magazines_ = 10; 48 48 49 this->deployment_ = DEPLOYMENT_SEPARATE;49 this->deployment_ = MunitionDeployment::Separate; 50 50 51 51 this->reloadTime_ = 1.0f; -
code/branches/fabienHS15/src/modules/weapons/munitions/GravityBombMunition.cc
r10688 r10713 19 19 this->magazines_ = 15; 20 20 21 this->deployment_ = DEPLOYMENT_STACK;21 this->deployment_ = MunitionDeployment::Stack; 22 22 23 23 this->bAllowMunitionRefilling_ = true; -
code/branches/fabienHS15/src/modules/weapons/munitions/IceMunition.cc
r10688 r10713 47 47 this->magazines_ = 25; 48 48 49 this->deployment_ = DEPLOYMENT_STACK;49 this->deployment_ = MunitionDeployment::Stack; 50 50 51 51 this->bAllowMunitionRefilling_ = false; -
code/branches/fabienHS15/src/modules/weapons/munitions/LaserMunition.cc
r10688 r10713 47 47 this->magazines_ = 10; 48 48 49 this->deployment_ = DEPLOYMENT_SEPARATE;49 this->deployment_ = MunitionDeployment::Separate; 50 50 51 51 this->bAllowMunitionRefilling_ = true; -
code/branches/fabienHS15/src/modules/weapons/munitions/LightningMunition.cc
r10688 r10713 47 47 this->magazines_ = 1; 48 48 49 this->deployment_ = DEPLOYMENT_SHARE;49 this->deployment_ = MunitionDeployment::Share; 50 50 51 51 this->bAllowMunitionRefilling_ = true; -
code/branches/fabienHS15/src/modules/weapons/munitions/RocketMunition.cc
r10688 r10713 47 47 this->magazines_ = 10; 48 48 49 this->deployment_ = DEPLOYMENT_STACK;49 this->deployment_ = MunitionDeployment::Stack; 50 50 51 51 this->bAllowMunitionRefilling_ = false; -
code/branches/fabienHS15/src/modules/weapons/munitions/SplitMunition.cc
r10688 r10713 47 47 this->magazines_ = 25; 48 48 49 this->deployment_ = DEPLOYMENT_STACK;49 this->deployment_ = MunitionDeployment::Stack; 50 50 51 51 this->bAllowMunitionRefilling_ = true;
Note: See TracChangeset
for help on using the changeset viewer.