diff options
author | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-05 04:33:49 -0500 |
---|---|---|
committer | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-05 04:33:49 -0500 |
commit | 681bc9516533561fc0d07f80f1b1a2df16e79060 (patch) | |
tree | e526328523c2ac7699bcbb4a6b79c70d826ad589 /src/bossFuzzyBear.cpp | |
parent | c274d2173da36069855b191b93c831c1ad9bcb2b (diff) | |
download | kamek-681bc9516533561fc0d07f80f1b1a2df16e79060.tar.gz kamek-681bc9516533561fc0d07f80f1b1a2df16e79060.zip |
changes and junk
Diffstat (limited to '')
-rw-r--r-- | src/bossFuzzyBear.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bossFuzzyBear.cpp b/src/bossFuzzyBear.cpp index 463d063..7bb7e8b 100644 --- a/src/bossFuzzyBear.cpp +++ b/src/bossFuzzyBear.cpp @@ -45,6 +45,7 @@ class daFuzzyBear_c : public dEn_c { // void yoshiCollision(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat1_Fireball_E_Explosion(ActivePhysics *apThis, ActivePhysics *apOther); bool collisionCat2_IceBall_15_YoshiIce(ActivePhysics *apThis, ActivePhysics *apOther); + void collisionCatD_GroundPound(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat9_RollingObject(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat13_Hammer(ActivePhysics *apThis, ActivePhysics *apOther); void collisionCat14_YoshiFire(ActivePhysics *apThis, ActivePhysics *apOther); @@ -109,6 +110,7 @@ void daFuzzyBear_c::collisionCat1_Fireball_E_Explosion(ActivePhysics *apThis, Ac if (this->damage > 14) { doStateChange(&StateID_Outro); } } bool daFuzzyBear_c::collisionCat2_IceBall_15_YoshiIce(ActivePhysics *apThis, ActivePhysics *apOther) { OSReport("Hit Iceball"); return false; } +void daFuzzyBear_c::collisionCatD_GroundPound(ActivePhysics *apThis, ActivePhysics *apOther) { OSReport("Groundpound\n"); } void daFuzzyBear_c::collisionCat9_RollingObject(ActivePhysics *apThis, ActivePhysics *apOther) { OSReport("Hit Rolling Object"); |