summaryrefslogtreecommitdiff
path: root/src/inventory.h
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2008-11-25 18:43:28 +0000
committerIra Rice <irarice@gmail.com>2008-11-25 18:43:28 +0000
commit886a5d4803e277b053014ae6b5c1c347f7756d48 (patch)
treee24d94a1652470c27a2dbe26eed7a1923d43adb3 /src/inventory.h
parentd5e30d8f72184241034aa797471c31a5bcbaa095 (diff)
downloadmana-client-886a5d4803e277b053014ae6b5c1c347f7756d48.tar.gz
mana-client-886a5d4803e277b053014ae6b5c1c347f7756d48.tar.bz2
mana-client-886a5d4803e277b053014ae6b5c1c347f7756d48.tar.xz
mana-client-886a5d4803e277b053014ae6b5c1c347f7756d48.zip
Miscellaneous TMW change commits. Missed these changes before because of
a confusion on git.
Diffstat (limited to 'src/inventory.h')
-rw-r--r--src/inventory.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inventory.h b/src/inventory.h
index 87d09567..566ca17c 100644
--- a/src/inventory.h
+++ b/src/inventory.h
@@ -83,7 +83,7 @@ class Inventory
/**
* Returns id of next free slot or -1 if all occupied.
*/
- int getFreeSlot();
+ int getFreeSlot() const;
/**
* Reset all item slots.
@@ -93,12 +93,12 @@ class Inventory
/**
* Get the number of slots filled with an item
*/
- int getNumberOfSlotsUsed();
+ int getNumberOfSlotsUsed() const;
/**
* Returns the index of the last occupied slot or 0 if none occupied.
*/
- int getLastUsedSlot();
+ int getLastUsedSlot() const;
protected:
Item **mItems; /**< The holder of items */