From c60dbb8bcdb585753980cadda66f012ffb71f1ec Mon Sep 17 00:00:00 2001 From: Colin Noga Date: Tue, 3 Apr 2012 09:59:12 -0500 Subject: Small challenge star fix --- src/challengeStar.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/challengeStar.cpp b/src/challengeStar.cpp index ec863f1..051f9c4 100644 --- a/src/challengeStar.cpp +++ b/src/challengeStar.cpp @@ -36,6 +36,7 @@ class dChallengeStar : public dEn_c { void playerCollision(ActivePhysics *apThis, ActivePhysics *apOther); void yoshiCollision(ActivePhysics *apThis, ActivePhysics *apOther); + void collisionCat3_StarPower(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat7_WMWaggleWater(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat7_WMWaggleWaterYoshi(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCatA_PenguinMario(ActivePhysics *apThis, ActivePhysics *apOther); @@ -57,6 +58,7 @@ void dChallengeStar::playerCollision(ActivePhysics *apThis, ActivePhysics *apOth } void dChallengeStar::yoshiCollision(ActivePhysics *apThis, ActivePhysics *apOther) { this->playerCollision(apThis, apOther); } +void dChallengeStar::collisionCat3_StarPower(ActivePhysics *apThis, ActivePhysics *apOther) { this->playerCollision(apThis, apOther); } void dChallengeStar::collisionCat9_RollingObject(ActivePhysics *apThis, ActivePhysics *apOther) { this->playerCollision(apThis, apOther); } void dChallengeStar::collisionCat7_WMWaggleWater(ActivePhysics *apThis, ActivePhysics *apOther) { this->playerCollision(apThis, apOther); } void dChallengeStar::collisionCat7_WMWaggleWaterYoshi(ActivePhysics *apThis, ActivePhysics *apOther) { this->playerCollision(apThis, apOther); } -- cgit v1.2.3