diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-12-23 14:23:32 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2012-12-24 10:52:13 -0800 |
commit | a1a02150d710df2838060445b9ad447689538985 (patch) | |
tree | 8ae2d08ebbd04df92a2e07f738a614d4f22157f1 /src/map/itemdb.hpp | |
parent | 7afacd63fe36eb56b52490ecf22daeaa95657942 (diff) | |
download | tmwa-a1a02150d710df2838060445b9ad447689538985.tar.gz tmwa-a1a02150d710df2838060445b9ad447689538985.tar.bz2 tmwa-a1a02150d710df2838060445b9ad447689538985.tar.xz tmwa-a1a02150d710df2838060445b9ad447689538985.zip |
Enumify some more things ... maybe even everything
Diffstat (limited to 'src/map/itemdb.hpp')
-rw-r--r-- | src/map/itemdb.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/itemdb.hpp b/src/map/itemdb.hpp index 97d39dd..e503d9a 100644 --- a/src/map/itemdb.hpp +++ b/src/map/itemdb.hpp @@ -12,9 +12,9 @@ struct item_data char cardillustname[64]; int value_buy; int value_sell; - int type; + ItemType type; int sex; - int equip; + EPOS equip; int weight; int atk; int def; |