Changeset 10626
- Timestamp:
- Oct 5, 2015, 3:34:47 PM (9 years ago)
- Location:
- code/trunk/src/modules
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/invader/InvaderEnemyShooter.cc
r9961 r10626 71 71 } 72 72 73 void InvaderEnemyShooter::damage(float damage, float healthdamage, float shielddamage, Pawn* originator )73 void InvaderEnemyShooter::damage(float damage, float healthdamage, float shielddamage, Pawn* originator, const btCollisionShape* cs) 74 74 { 75 75 Pawn::damage(damage, healthdamage, shielddamage, originator); -
code/trunk/src/modules/invader/InvaderEnemyShooter.h
r9943 r10626 48 48 49 49 virtual void tick(float dt); 50 virtual void damage(float damage, float healthdamage, float shielddamage, Pawn* originator );50 virtual void damage(float damage, float healthdamage, float shielddamage, Pawn* originator, const btCollisionShape* cs); 51 51 protected: 52 52 void shoot(); -
code/trunk/src/modules/towerdefense/TowerDefenseEnemy.cc
r10624 r10626 63 63 } 64 64 65 void TowerDefenseEnemy::damage(float damage, float healthdamage, float shielddamage, Pawn* originator )65 void TowerDefenseEnemy::damage(float damage, float healthdamage, float shielddamage, Pawn* originator, const btCollisionShape* cs) 66 66 { 67 67 Pawn::damage(damage, healthdamage, shielddamage, originator); -
code/trunk/src/modules/towerdefense/TowerDefenseEnemy.h
r10624 r10626 43 43 TDCoordinate peekWaypoint(); 44 44 45 virtual void damage(float damage, float healthdamage, float shielddamage, Pawn* originator );45 virtual void damage(float damage, float healthdamage, float shielddamage, Pawn* originator, const btCollisionShape* cs); 46 46 47 47
Note: See TracChangeset
for help on using the changeset viewer.