From d6b7cd3b259512cd28e1b5a82861ef8b11b2b7cb Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 24 Jan 2015 16:05:23 +0300 Subject: Use InventoryType for inventory type. --- src/inventory.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/inventory.h') diff --git a/src/inventory.h b/src/inventory.h index 8438f63d7..e09fbb673 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -47,7 +47,8 @@ class Inventory final * * @param size the number of items that fit in the inventory */ - explicit Inventory(const int type, const int size = -1); + explicit Inventory(const InventoryType::Type type, + const int size = -1); /** * Destructor. @@ -148,7 +149,7 @@ class Inventory final void removeInventoyListener(InventoryListener *const listener); - int getType() const A_WARN_UNUSED + InventoryType::Type getType() const A_WARN_UNUSED { return mType; } bool isMainInventory() const A_WARN_UNUSED @@ -168,7 +169,7 @@ class Inventory final void distributeSlotsChangedEvent(); - int mType; + InventoryType::Type mType; unsigned mSize; /**< The max number of inventory items */ Item **mItems; /**< The holder of items */ int mUsed; /**< THe number of slots in use */ -- cgit v1.2.3-60-g2f50