diff options
Diffstat (limited to 'src/flooritem.h')
-rw-r--r-- | src/flooritem.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/flooritem.h b/src/flooritem.h index 3e2f8ef47..dd1db1b35 100644 --- a/src/flooritem.h +++ b/src/flooritem.h @@ -83,6 +83,12 @@ class FloorItem : public ActorSprite unsigned char getColor() const { return mColor; } + bool getShowMsg() + { return mShowMsg; } + + void setShowMsg(bool n) + { mShowMsg = n; } + private: int mItemId; int mX, mY; @@ -93,6 +99,7 @@ class FloorItem : public ActorSprite int mAmount; unsigned mPickupCount; unsigned char mColor; + bool mShowMsg; }; #endif |