| 614 | } |
| 615 | |
| 616 | void zNPCMgr::BackdoorUpdateAllNPCsOnce(xScene* xscn, F32 dt) |
| 617 | { |
| 618 | for (int i = 0; i < npclist.cnt; i++) |
| 619 | { |
| 620 | zNPCCommon* npc = (zNPCCommon*)npclist.list[i]; |
| 621 | xSceneID2Name(globals.sceneCur, npc->id); |
| 622 | |
| 623 | if (npc->baseFlags & 0x40 && npc->update != NULL) |
| 624 | { |
| 625 | npc->update(npc, xscn, 1.0f / 60); |
| 626 | } |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | void zNPCMgr::SceneTimestep(xScene* xscn, F32 dt) |
| 631 | { |
nothing calls this directly
no test coverage detected