- Timestamp:
- Dec 9, 2015, 4:56:39 PM (9 years ago)
- Location:
- code/branches/presentationHS15
- Files:
-
- 2 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentationHS15
- Property svn:mergeinfo changed
/code/branches/particleEffectsHS15 (added) merged: 10644,10671,10706,10836,10889,10897,10901,10908,10911,10944,10948
- Property svn:mergeinfo changed
-
code/branches/presentationHS15/src/modules/weapons/munitions/CMakeLists.txt
r10961 r10963 7 7 IceMunition.cc 8 8 SplitMunition.cc 9 MineMunition.cc 9 10 ) -
code/branches/presentationHS15/src/modules/weapons/munitions/MineMunition.cc
r10962 r10963 45 45 this->maxMunitionPerMagazine_ = 1; 46 46 this->maxMagazines_ = 100; 47 this-> magazines_ = 25;47 this->unassignedMagazines_ = 25; 48 48 49 this->bUseSeparateMagazines_ = false; 50 this->bStackMunition_ = true; 49 this->deployment_ = MunitionDeployment::Stack; 51 50 52 51 this->bAllowMunitionRefilling_ = true; 53 52 this->bAllowMultiMunitionRemovementUnderflow_ = false; 53 54 this->reloadTime_ = 0.5f; 55 } 56 57 void MineMunition::XMLPort(Element& xmlelement, XMLPort::Mode mode) 58 { 59 SUPER(MineMunition, XMLPort, xmlelement, mode); 54 60 } 55 61 } -
code/branches/presentationHS15/src/modules/weapons/munitions/MineMunition.h
r10962 r10963 53 53 MineMunition(Context* context); 54 54 virtual ~MineMunition() {} 55 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 55 56 }; 56 57 }
Note: See TracChangeset
for help on using the changeset viewer.