diff options
Diffstat (limited to 'include/inventory.hpp')
-rw-r--r-- | include/inventory.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/inventory.hpp b/include/inventory.hpp index c34eadb..552b30c 100644 --- a/include/inventory.hpp +++ b/include/inventory.hpp @@ -113,6 +113,24 @@ public: Sword* clone(); }; +class Arrow : public Item { +private: + // same as sword + float damage; +public: + + // see sword + float getDamage(); + + // sets amount of damage + void setDamage(float d); + + // uses item + int useItem(); + + Arrow *clone(); +}; + /** * Bow class. We use this for shooting bow and arrows */ @@ -124,6 +142,9 @@ public: // returns the amount of damage, see sword float getDamage(); + // sets the amount of damages + void setDamage(float d); + // handles shooting and arrow curving int useItem(); |