From 10fa535e98f3e1043b04895aaab2e916549fcf69 Mon Sep 17 00:00:00 2001 From: Colin Noga Date: Sun, 24 Jun 2012 19:34:56 -0500 Subject: Lots of bug fixes, bowser improvements, summer sun hacks, JPN support, etc. --- src/poweruphax.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/poweruphax.cpp (limited to 'src/poweruphax.cpp') diff --git a/src/poweruphax.cpp b/src/poweruphax.cpp new file mode 100644 index 0000000..787e88f --- /dev/null +++ b/src/poweruphax.cpp @@ -0,0 +1,21 @@ +#include +#include + + +void ThwompHammer(dEn_c *thwomp, ActivePhysics *apThis, ActivePhysics *apOther) { + if (thwomp->name == 0x51) { + thwomp->dEn_c::collisionCat13_Hammer(apThis, apOther); + } + return; +} + +void BooHammer(dEn_c *boo, ActivePhysics *apThis, ActivePhysics *apOther) { + if (boo->name == 0xB0) { + boo->dEn_c::collisionCat13_Hammer(apThis, apOther); + } + return; +} + +void UrchinHammer(dEn_c *urchin, ActivePhysics *apThis, ActivePhysics *apOther) { + return; +} -- cgit v1.2.3