summaryrefslogtreecommitdiff
path: root/src/flooritem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/flooritem.h')
-rw-r--r--src/flooritem.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/flooritem.h b/src/flooritem.h
index 3e203adbd..71ae94b6f 100644
--- a/src/flooritem.h
+++ b/src/flooritem.h
@@ -112,8 +112,19 @@ class FloorItem final : public ActorSprite
Cursor::Cursor getHoverCursor() const A_WARN_UNUSED
{ return mCursor; }
- void setCards(const int *const cards,
- int sz);
+ void setCards(const int *const cards, int sz);
+
+ int getRefine() const A_WARN_UNUSED
+ { return mRefine; }
+
+ int getItemType() const A_WARN_UNUSED
+ { return mItemType; }
+
+ Identified getIdentified() const A_WARN_UNUSED
+ { return mIdentified; }
+
+ Damaged getDamaged() const A_WARN_UNUSED
+ { return mDamaged; }
private:
int mCards[4];