diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-28 00:18:59 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-28 00:18:59 +0000 |
commit | 4525bedabcf5796da0d7923a014bbdc18fee429e (patch) | |
tree | 81e2ac034886fffcb3b9d17699a57dbe87d37aa0 /src/gui/inventory.h | |
parent | 30063f42cc8d13ed241a52b90e63c2c68599115e (diff) | |
download | mana-4525bedabcf5796da0d7923a014bbdc18fee429e.tar.gz mana-4525bedabcf5796da0d7923a014bbdc18fee429e.tar.bz2 mana-4525bedabcf5796da0d7923a014bbdc18fee429e.tar.xz mana-4525bedabcf5796da0d7923a014bbdc18fee429e.zip |
Applied inventory weight information patch by Javila.
Diffstat (limited to 'src/gui/inventory.h')
-rw-r--r-- | src/gui/inventory.h | 4 |
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 |