diff options
Diffstat (limited to 'include/inventory.hpp')
-rw-r--r-- | include/inventory.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/inventory.hpp b/include/inventory.hpp index 1431f42..a85e537 100644 --- a/include/inventory.hpp +++ b/include/inventory.hpp @@ -185,6 +185,18 @@ public: Food* clone(); }; +class ItemLight : public Item { +private: + // the color of the light + Color color; +public: + // turn on/off the light + // TODO + int useItem(); + + ItemLight* clone(); +}; + /** * Currency class. Well, it's used for currency */ |