summaryrefslogtreecommitdiff
path: root/src/challengeStar.cpp
diff options
context:
space:
mode:
authorColin Noga <Tempus@chronometry.ca>2012-04-03 09:59:12 -0500
committerColin Noga <Tempus@chronometry.ca>2012-04-03 09:59:12 -0500
commitc60dbb8bcdb585753980cadda66f012ffb71f1ec (patch)
tree3ae68fb7331211a06d0f2d9f61f201f24f592b32 /src/challengeStar.cpp
parent3f6db4f669fe659af25169cc22b1d8e6b288d2b6 (diff)
downloadkamek-c60dbb8bcdb585753980cadda66f012ffb71f1ec.tar.gz
kamek-c60dbb8bcdb585753980cadda66f012ffb71f1ec.zip
Small challenge star fix
Diffstat (limited to 'src/challengeStar.cpp')
-rw-r--r--src/challengeStar.cpp2
1 files changed, 2 insertions, 0 deletions
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); }