diff options
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index f634025f..937911af 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -31,13 +31,14 @@ */ class ItemInfo { + friend class ItemManager; + public: /** * Constructor. */ ItemInfo(); - void setImage(short image); short getImage(); @@ -70,21 +71,18 @@ class ItemInfo char getSlot(); - protected: /** * Destructor. */ ~ItemInfo(); - + short image, art; std::string name; std::string description; std::string effect; short type, weight; char slot; - - }; #endif |