diff options
author | Jan-Fabian Humann <malastare@gmx.net> | 2005-04-04 22:41:56 +0000 |
---|---|---|
committer | Jan-Fabian Humann <malastare@gmx.net> | 2005-04-04 22:41:56 +0000 |
commit | 11dbd7dafa3e4e7fb1771940fbd37e7c113a557f (patch) | |
tree | 2f60efb5d697ba5e7cc09db11e03c83cdef639be /src | |
parent | ca03f5a83dbd379d21c20ed4e69ec6836395b694 (diff) | |
download | mana-11dbd7dafa3e4e7fb1771940fbd37e7c113a557f.tar.gz mana-11dbd7dafa3e4e7fb1771940fbd37e7c113a557f.tar.bz2 mana-11dbd7dafa3e4e7fb1771940fbd37e7c113a557f.tar.xz mana-11dbd7dafa3e4e7fb1771940fbd37e7c113a557f.zip |
tiny compile fix
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/inventory.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/inventory.h b/src/gui/inventory.h index 9c76e176..591e316e 100644 --- a/src/gui/inventory.h +++ b/src/gui/inventory.h @@ -66,6 +66,11 @@ class InventoryWindow : public Window, gcn::ActionListener { void equipItem(int index); /** + * Unequips an item. + */ + void unequipItem(int index); + + /** * Change quantity of an item. */ int changeQuantity(int index, int quantity); @@ -87,7 +92,6 @@ class InventoryWindow : public Window, gcn::ActionListener { private: gcn::Button *useButton, *dropButton; int useItem(int index, int id); - void unequipItem(int index); }; |