diff options
| author | Zeclos <Zeclos99@gmail.com> | 2026-03-04 19:25:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 13:25:59 -0500 |
| commit | dcf4862387fb9be67f7aff9fe4f986d129366662 (patch) | |
| tree | 4f50bd214b8bf29f95526f9d7a7c951242b6d9e8 /include/d/d_npc.h | |
| parent | d54d983a4a7433f97f92b9e162cea5972dac6165 (diff) | |
D_a_npc_tc matching for retail (#930)
* progress
* code matching non-demo
* cleanup for d_a_npc_tc and d_a_obj_smplbg
Diffstat (limited to 'include/d/d_npc.h')
| -rw-r--r-- | include/d/d_npc.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/d/d_npc.h b/include/d/d_npc.h index 6db4ab71..be3d1441 100644 --- a/include/d/d_npc.h +++ b/include/d/d_npc.h @@ -161,6 +161,10 @@ public: return mpEvtStaffName; } + int getNowCut() { + return mCurActIdx; + } + bool getAttnFlag() { return mbAttention; } @@ -169,6 +173,14 @@ public: mbAttention = flag; } + void setAttnNoTurnFlag(bool flag) { + mbNoTurn = flag; + } + + f32 getMoveSpeed() { + return mSpeed; + } + cXyz getAttnPos() { return mPos; } |
