diff options
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r-- | src/statuseffect.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h index dccb19554..9539e4224 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -91,6 +91,9 @@ class StatusEffect final bool isTrickDead() const A_WARN_UNUSED { return mIsTrickDead; } + bool isPostDelay() const A_WARN_UNUSED + { return mIsPostDelay; } + /** * Retrieves a status effect. * @@ -143,6 +146,7 @@ class StatusEffect final bool mIsCart; bool mIsRiding; bool mIsTrickDead; + bool mIsPostDelay; }; #endif // STATUSEFFECT_H |