diff options
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 3df93e978..5d06a89e8 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -31,17 +31,13 @@ #include "enums/simpletypes/itemcolor.h" #include "resources/cursors.h" +#include "resources/itemcolordata.h" #include "resources/soundinfo.h" #include "resources/sprite/spritedisplay.h" #include "utils/intmap.h" -namespace ColorDB -{ - class ItemColorData; -} // namespace ColorDB - // sprite, <itemfrom, itemto> typedef std::map<int, IntMap> SpriteToItemMap; typedef SpriteToItemMap::const_iterator SpriteToItemMapCIter; @@ -364,8 +360,8 @@ class ItemInfo final /** Stores the names of sounds to be played at certain event. */ std::map <ItemSoundEvent::Type, SoundInfoVect> mSounds; std::map <int, int> mTags; - const std::map <ItemColor, ColorDB::ItemColorData> *mColorsList; - const std::map <ItemColor, ColorDB::ItemColorData> *mIconColorsList; + const std::map <ItemColor, ItemColorData> *mColorsList; + const std::map <ItemColor, ItemColorData> *mIconColorsList; std::string mColorsListName; std::string mIconColorsListName; ItemColor mCardColor; |