summaryrefslogtreecommitdiff
path: root/src/gui/equipment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/equipment.h')
-rw-r--r--src/gui/equipment.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/gui/equipment.h b/src/gui/equipment.h
index 87f543ca..5670d065 100644
--- a/src/gui/equipment.h
+++ b/src/gui/equipment.h
@@ -27,11 +27,6 @@
#include "../graphic/spriteset.h"
#include "window.h"
-typedef struct {
- int id;
- int inventoryIndex;
-} EQUIPMENT_HOLDER;
-
/**
* Equipment dialog.
*
@@ -58,25 +53,8 @@ class EquipmentWindow : public Window, gcn::ActionListener {
* Called when receiving actions from the widgets.
*/
void action(const std::string& eventId);
-
- void addEquipment(int index, int id);
-
- void removeEquipment(int index);
-
- void setInventoryIndex(int index, int inventoryIndex);
-
- int getInventoryIndex(int index);
- void setArrows(int id);
-
- int getArrows();
-
- EQUIPMENT_HOLDER equipments[10];
-
- int arrowsNumber;
-
private:
- int arrows;
Spriteset *itemset;
};