| 15 | #pragma pop |
| 16 | |
| 17 | S32 zNPCGoalCommon::Enter(F32 dt, void* updCtxt) |
| 18 | { |
| 19 | S32 gid = psyche->GIDOfPending(); |
| 20 | |
| 21 | if (((flg_npcgauto & 0x2) && gid == 0) || gid == GetID()) |
| 22 | { |
| 23 | DoAutoAnim(NPC_GSPOT_START, 0); |
| 24 | } |
| 25 | |
| 26 | return xGoal::Enter(dt, updCtxt); |
| 27 | } |
| 28 | |
| 29 | S32 zNPCGoalCommon::Resume(F32 dt, void* updCtxt) |
| 30 | { |
no test coverage detected