diff options
Diffstat (limited to 'src/resources/itemdb.h')
-rw-r--r-- | src/resources/itemdb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/itemdb.h b/src/resources/itemdb.h index e56840c16..6fa05ac29 100644 --- a/src/resources/itemdb.h +++ b/src/resources/itemdb.h @@ -23,10 +23,10 @@ #ifndef ITEM_MANAGER_H #define ITEM_MANAGER_H +#include "utils/stringvector.h" + #include <list> -#include <vector> #include <map> -#include <string> class ItemInfo; @@ -45,7 +45,7 @@ namespace ItemDB */ void unload(); - const std::vector<std::string> &getTags(); + const StringVect &getTags(); bool exists(int id); |