summaryrefslogtreecommitdiff
path: root/include/d/d_player_act.h
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2025-05-26 22:12:25 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2025-05-26 22:12:25 -0400
commit00a4d0a1665af090e9829ee246cdfce27c39c657 (patch)
tree1c2ead4822a670153a22c22122c0c7817322baf4 /include/d/d_player_act.h
parent01839e716fb4c7ac9afd4fb3d5c05ed1c6516db7 (diff)
intial progress
Diffstat (limited to 'include/d/d_player_act.h')
-rw-r--r--include/d/d_player_act.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/d/d_player_act.h b/include/d/d_player_act.h
index a490da69..6214a749 100644
--- a/include/d/d_player_act.h
+++ b/include/d/d_player_act.h
@@ -584,6 +584,13 @@ public:
return mCurrentAction == 0xAD || mCurrentAction == 0xAE;
}
+ void onModelUpdateFlag(u32 mask) {
+ mModelUpdateFlags |= mask;
+ }
+ void offModelUpdateFlag(u32 mask) {
+ mModelUpdateFlags &= ~mask;
+ }
+
inline bool checkActionFlags(u32 mask) const {
return (mActionFlags & mask) != 0;
}