diff options
Diffstat (limited to '')
-rw-r--r-- | src/shyguyGiants.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shyguyGiants.cpp b/src/shyguyGiants.cpp index dc474f6..a617e88 100644 --- a/src/shyguyGiants.cpp +++ b/src/shyguyGiants.cpp @@ -92,6 +92,7 @@ class daShyGuyGiant : public dEn_c { void _vf260(void *other); // AcPy/PlBase? plays the SE_EMY_FUMU_%d sounds based on some value void _vf264(dStageActor_c *other); // if other is player or yoshi, do Wm_en_hit and a few other things void _vf268(void *other); // AcPy/PlBase? plays the SE_EMY_DOWN_SPIN_%d sounds based on some value + void _vf278(void *other); // AcPy/PlBase? plays the SE_EMY_YOSHI_FUMU_%d sounds based on some value USING_STATES(daShyGuyGiant); DECLARE_STATE(RealWalk); @@ -160,6 +161,9 @@ daShyGuyGiant *daShyGuyGiant::build() { } } } +void daShyGuyGiant::_vf278(void *other) { + PlaySound(this, SE_EMY_HANACHAN_STOMP); +} void daShyGuyGiant::bouncePlayerWhenJumpedOn(void *player) { bouncePlayer(player, 5.0f); |