Changeset 10592 for code/branches/towerdefenseFabien/src/modules/weapons
- Timestamp:
- Sep 24, 2015, 1:23:47 PM (10 years ago)
- Location:
- code/branches/towerdefenseFabien/src/modules/weapons
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/towerdefenseFabien/src/modules/weapons/WeaponsPrereqs.h
r8855 r10592 79 79 class BillboardProjectile; 80 80 class LightningGunProjectile; 81 class SplitGunProjectile; 81 82 class ParticleProjectile; 82 83 class Projectile; … … 90 91 class LaserFire; 91 92 class LightningGun; 93 class SplitGun; 92 94 class RocketFire; 93 95 class SimpleRocketFire; -
code/branches/towerdefenseFabien/src/modules/weapons/projectiles/BillboardProjectile.cc
r9667 r10592 88 88 /** 89 89 @brief 90 Get the material of the BillboardProjectile. 91 @return 92 The material name. 93 */ 94 const std::string& BillboardProjectile::getMaterial() 95 { 96 return this->billboard_.getMaterial(); 97 } 98 99 /** 100 @brief 90 101 Is called when the visibility of the BillboardProjectile has changed. 91 102 */ -
code/branches/towerdefenseFabien/src/modules/weapons/projectiles/BillboardProjectile.h
r9667 r10592 60 60 virtual void setColour(const ColourValue& colour); 61 61 virtual void setMaterial(const std::string& material); 62 virtual const std::string& getMaterial(); 62 63 virtual void changedVisibility(); 63 64 -
code/branches/towerdefenseFabien/src/modules/weapons/projectiles/CMakeLists.txt
r8855 r10592 5 5 Projectile.cc 6 6 LightningGunProjectile.cc 7 SplitGunProjectile.cc 7 8 Rocket.cc 8 9 SimpleRocket.cc 10 SplitGunProjectile.cc 9 11 ) -
code/branches/towerdefenseFabien/src/modules/weapons/weaponmodes/CMakeLists.txt
r7163 r10592 5 5 HsW01.cc 6 6 LightningGun.cc 7 SplitGun.cc 7 8 RocketFire.cc 8 9 SimpleRocketFire.cc
Note: See TracChangeset
for help on using the changeset viewer.