diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-06-24 19:34:56 -0500 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-06-24 19:34:56 -0500 |
commit | 10fa535e98f3e1043b04895aaab2e916549fcf69 (patch) | |
tree | 7dda2c5658961801414f2eef9e9137efadd26d78 /src/poweruphax.cpp | |
parent | fd286ae035b52d3d78e234d9f91b6610ae30def6 (diff) | |
download | kamek-10fa535e98f3e1043b04895aaab2e916549fcf69.tar.gz kamek-10fa535e98f3e1043b04895aaab2e916549fcf69.zip |
Lots of bug fixes, bowser improvements, summer sun hacks, JPN support, etc.
Diffstat (limited to '')
-rw-r--r-- | src/poweruphax.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
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 <common.h> +#include <game.h> + + +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; +} |