| 34 | } |
| 35 | |
| 36 | S32 zNPCGoalJellyBumped::Exit(F32 dt, void* updCtxt) |
| 37 | { |
| 38 | zNPCJelly* npc = (zNPCJelly*)psyche->clt_owner; |
| 39 | npc->VelStop(); |
| 40 | |
| 41 | StreakDone(); |
| 42 | |
| 43 | npc->SndPlayRandom(NPC_STYP_DEATHJELLY); |
| 44 | npc->ActLikeOctopus(); |
| 45 | |
| 46 | return zNPCGoalPushAnim::Exit(dt, updCtxt); |
| 47 | } |
| 48 | |
| 49 | S32 zNPCGoalJellyBumped::Process(en_trantype* trantyp, F32 dt, void* updCxt, xScene* xscn) |
| 50 | { |
nothing calls this directly
no test coverage detected