Changeset 6431 in orxonox.OLD for trunk/src/world_entities/weapons/projectile.h
- Timestamp:
- Jan 8, 2006, 12:52:23 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/weapons/projectile.h
r6078 r6431 23 23 24 24 25 void set Energies(float energyMin, float energyMax);25 void setMinEnergy(float energyMin); 26 26 /** @returns the minimal charched energy */ 27 inline float getEnergyMin() { return this->energyMin; }; 28 /** @returns the maximal charched energy */ 29 inline float getEnergyMax() { return this->energyMax; }; 27 inline float getMinEnergy() { return this->energyMin; }; 30 28 /** @returns if the Projectile can be charged */ 31 29 inline bool isChageable() { return this->bChargeable; }; … … 50 48 // energy 51 49 float energyMin; //!< The minimal Energy a Projectile needs to be emitted. 52 float energyMax; //!< The maximal Energy a Projectile can take, before being emitted.53 50 bool bChargeable; //!< if the Projectile is Charegeable 54 51
Note: See TracChangeset
for help on using the changeset viewer.