summaryrefslogtreecommitdiff
path: root/src/gui/inventory.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-28 00:18:59 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-28 00:18:59 +0000
commit4525bedabcf5796da0d7923a014bbdc18fee429e (patch)
tree81e2ac034886fffcb3b9d17699a57dbe87d37aa0 /src/gui/inventory.h
parent30063f42cc8d13ed241a52b90e63c2c68599115e (diff)
downloadmana-client-4525bedabcf5796da0d7923a014bbdc18fee429e.tar.gz
mana-client-4525bedabcf5796da0d7923a014bbdc18fee429e.tar.bz2
mana-client-4525bedabcf5796da0d7923a014bbdc18fee429e.tar.xz
mana-client-4525bedabcf5796da0d7923a014bbdc18fee429e.zip
Applied inventory weight information patch by Javila.
Diffstat (limited to 'src/gui/inventory.h')
-rw-r--r--src/gui/inventory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/inventory.h b/src/gui/inventory.h
index 37edff7f..969424fb 100644
--- a/src/gui/inventory.h
+++ b/src/gui/inventory.h
@@ -51,7 +51,7 @@ class InventoryWindow : public Window, gcn::ActionListener
~InventoryWindow();
/**
- * Logic (updates buttons)
+ * Logic (updates buttons and weight information)
*/
void logic();
@@ -93,6 +93,7 @@ class InventoryWindow : public Window, gcn::ActionListener
int dropItem(int index, int quantity);
void mouseClick(int x, int y, int button, int count);
+
void mouseMotion(int mx, int my);
ItemContainer *items;
@@ -107,6 +108,7 @@ class InventoryWindow : public Window, gcn::ActionListener
gcn::Label *itemNameLabel;
gcn::Label *itemDescriptionLabel;
+ gcn::Label *weightLabel;
};
#endif