diff options
Diffstat (limited to 'src/equipment.h')
-rw-r--r-- | src/equipment.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/equipment.h b/src/equipment.h index 4993e4df..28a96baa 100644 --- a/src/equipment.h +++ b/src/equipment.h @@ -43,26 +43,22 @@ class Equipment /** * Set equipment at the given slot. */ - void - setEquipment(int index, int inventoryIndex); + void setEquipment(int index, int inventoryIndex); /** * Remove equipment from the given slot. */ - void - removeEquipment(int index) { mEquipment[index] = 0; } + void removeEquipment(int index) { mEquipment[index] = 0; } /** - * Get the item used in the arrow slot. + * Returns the item used in the arrow slot. */ - int - getArrows() { return mArrows; } + int getArrows() const { return mArrows; } /** * Set the item used in the arrow slot. */ - void - setArrows(int arrows) { mArrows = arrows; } + void setArrows(int arrows) { mArrows = arrows; } private: int mEquipment[EQUIPMENT_SIZE]; |