| 621 | } |
| 622 | |
| 623 | void zNPCTiki::ParseINI() |
| 624 | { |
| 625 | zNPCCommon::ParseINI(); |
| 626 | cfg_npc->snd_traxShare = g_sndTrax_TikiShared; |
| 627 | NPCS_SndTablePrepare((NPCSndTrax*)&g_sndTrax_TikiShared); |
| 628 | switch (this->SelfType()) |
| 629 | { |
| 630 | case NPC_TYPE_TIKI_THUNDER: |
| 631 | cfg_npc->snd_trax = g_sndTrax_TikiThunder; |
| 632 | NPCS_SndTablePrepare((NPCSndTrax*)&g_sndTrax_TikiThunder); |
| 633 | break; |
| 634 | } |
| 635 | } |
| 636 | |
| 637 | void zNPCTiki::Process(xScene* xscn, F32 dt) |
| 638 | { |
nothing calls this directly
no test coverage detected