| 3093 | |
| 3094 | static class zNPCLassoInfo* sCurrentNPCInfo; |
| 3095 | void zEntPlayer_LassoNotify(en_LASSO_EVENT event) |
| 3096 | { |
| 3097 | switch (event) |
| 3098 | { |
| 3099 | case LASS_EVNT_GRABEND: |
| 3100 | zLasso_SetGuide(sCurrentNPCInfo->lassoee, sCurrentNPCInfo->holdGuideAnim); |
| 3101 | break; |
| 3102 | case LASS_EVNT_ABORT: |
| 3103 | globals.player.lassoInfo.lasso.flags = 0; |
| 3104 | globals.player.lassoInfo.target = NULL; |
| 3105 | break; |
| 3106 | } |
| 3107 | } |
| 3108 | |
| 3109 | static unsigned int sShouldMelee; |
| 3110 | static U32 MeleeCheck(xAnimTransition*, xAnimSingle* anim, void*) |
nothing calls this directly
no test coverage detected