summaryrefslogtreecommitdiff
path: root/src/equipment.h
diff options
context:
space:
mode:
authorLloyd Bryant <lloyd_bryant@netzero.net>2008-08-18 00:04:30 +0000
committerLloyd Bryant <lloyd_bryant@netzero.net>2008-08-18 00:04:30 +0000
commit46074f67394f313331d13a5def4eb81ca92df576 (patch)
treee5c5fa2c4bd599657846918bdf88c27203a99eb6 /src/equipment.h
parentd5b86aa54dfa4ddf5b5f2361918c719ba8d0dd18 (diff)
downloadmana-client-46074f67394f313331d13a5def4eb81ca92df576.tar.gz
mana-client-46074f67394f313331d13a5def4eb81ca92df576.tar.bz2
mana-client-46074f67394f313331d13a5def4eb81ca92df576.tar.xz
mana-client-46074f67394f313331d13a5def4eb81ca92df576.zip
Fixed bugs with new arrow types
Diffstat (limited to 'src/equipment.h')
-rw-r--r--src/equipment.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/equipment.h b/src/equipment.h
index 04017549..fd7a9c1e 100644
--- a/src/equipment.h
+++ b/src/equipment.h
@@ -52,7 +52,7 @@ class Equipment
* Remove equipment from the given slot.
*/
void
- removeEquipment(int index) { mEquipment[index] = 0; }
+ removeEquipment(int index);
/**
* Remove the given item from equipment.
@@ -69,7 +69,7 @@ class Equipment
* Set the item used in the arrow slot.
*/
void
- setArrows(Item *arrows) { mArrows = arrows; }
+ setArrows(Item *arrows);
private:
Item *mEquipment[EQUIPMENT_SIZE];