| 235 | } |
| 236 | |
| 237 | void zNPCGoalLoopAnim::MolestLoopAnim() |
| 238 | { |
| 239 | zNPCCommon* npc = (zNPCCommon*)psyche->clt_owner; |
| 240 | xAnimState* state = npc->AnimFindState(anid_stage[1]); |
| 241 | origAnimFlags = state->Flags; |
| 242 | animWeMolested = state->ID; |
| 243 | state->Flags &= ~(1 << 5); |
| 244 | state->Flags |= (1 << 4); |
| 245 | } |
| 246 | |
| 247 | void zNPCGoalLoopAnim::UnmolestAnim() |
| 248 | { |
nothing calls this directly
no test coverage detected