diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-01-03 19:48:48 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-01-03 20:00:51 +0200 |
commit | 76bc1a5c994b46d8a4486a1226f681f7a4982f1c (patch) | |
tree | a2326dcfe0aa2208c03d7432168bca9ae35b5da4 /src/resources/itemdb.h | |
parent | 3436558bfd7bbbe0c63a0a89330b099b7c9da7ed (diff) | |
download | plus-76bc1a5c994b46d8a4486a1226f681f7a4982f1c.tar.gz plus-76bc1a5c994b46d8a4486a1226f681f7a4982f1c.tar.bz2 plus-76bc1a5c994b46d8a4486a1226f681f7a4982f1c.tar.xz plus-76bc1a5c994b46d8a4486a1226f681f7a4982f1c.zip |
Impliment base items tags. And show this tags in inventory.
Diffstat (limited to 'src/resources/itemdb.h')
-rw-r--r-- | src/resources/itemdb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/itemdb.h b/src/resources/itemdb.h index 76e646c0f..54e8ceb33 100644 --- a/src/resources/itemdb.h +++ b/src/resources/itemdb.h @@ -23,6 +23,7 @@ #define ITEM_MANAGER_H #include <list> +#include <vector> #include <map> #include <string> @@ -49,6 +50,8 @@ namespace ItemDB */ void unload(); + std::vector<std::string> &getTags(); + bool exists(int id); const ItemInfo &get(int id); |