| 193 | } |
| 194 | |
| 195 | void zNPCCommon_Timestep(xScene* scene, F32 dt) |
| 196 | { |
| 197 | NPCSupport_Timestep(dt); |
| 198 | NPCS_SndTimersUpdate(dt); |
| 199 | zNPCPlyrSnd_Update(dt); |
| 200 | g_skipDescent -= 1; |
| 201 | if (g_skipDescent < 0) |
| 202 | { |
| 203 | g_skipDescent = 0; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | void zNPCCommon::Init(xEntAsset* entass) |
| 208 | { |
no test coverage detected