| 863 | } |
| 864 | |
| 865 | void zNPCCommon::NewTime(xScene* xscn, F32 dt) |
| 866 | { |
| 867 | if (this->flg_misc & 0x2) |
| 868 | { |
| 869 | this->SndQueUpdate(dt); |
| 870 | } |
| 871 | |
| 872 | this->tmr_invuln = MAX(-1.0f, this->tmr_invuln - dt); |
| 873 | |
| 874 | xNPCBasic::NewTime(xscn, dt); |
| 875 | } |
| 876 | |
| 877 | S32 zNPCCommon::SysEvent(xBase* from, xBase* to, U32 toEvent, const F32* toParam, |
| 878 | xBase* toParamWidget, S32* handled) |
nothing calls this directly
no test coverage detected