diff options
Diffstat (limited to 'src/resources/db')
-rw-r--r-- | src/resources/db/itemdb.cpp | 7 | ||||
-rw-r--r-- | src/resources/db/itemdb.h | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp index b8e49a2db..b4af71c17 100644 --- a/src/resources/db/itemdb.cpp +++ b/src/resources/db/itemdb.cpp @@ -1055,3 +1055,10 @@ static void loadOrderSprite(ItemInfo *const itemInfo, itemInfo->setDrawBefore(direction, sprite); itemInfo->setDrawPriority(direction, priority); } + +#ifdef UNITTESTS +ItemDB::NamedItemInfos &ItemDB::getNamedItemInfosTest() +{ + return mNamedItemInfos; +} +#endif diff --git a/src/resources/db/itemdb.h b/src/resources/db/itemdb.h index 0436f604c..9231bbfc8 100644 --- a/src/resources/db/itemdb.h +++ b/src/resources/db/itemdb.h @@ -60,6 +60,10 @@ namespace ItemDB const ItemDB::ItemInfos &getItemInfos(); +#ifdef UNITTESTS + ItemDB::NamedItemInfos &getNamedItemInfosTest(); +#endif + int getTagId(const std::string &tagName) A_WARN_UNUSED; void setStatsList(const std::vector<Stat> &stats); |