diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-30 01:22:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-30 01:22:54 +0300 |
commit | d87f223424d15b6192f4873b9bdfd7818c695475 (patch) | |
tree | c85c693ae54b77b4df56f950a405a7679a3c40d2 /src/emap/struct/itempair2.h | |
parent | e7fa48986510956c22298a96ab1ea3b9eda4f1bd (diff) | |
download | evol-hercules-s20170605.tar.gz evol-hercules-s20170605.tar.bz2 evol-hercules-s20170605.tar.xz evol-hercules-s20170605.zip |
Add support for creating items with cards in craft.s20170605
Diffstat (limited to 'src/emap/struct/itempair2.h')
-rw-r--r-- | src/emap/struct/itempair2.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/emap/struct/itempair2.h b/src/emap/struct/itempair2.h new file mode 100644 index 0000000..6503373 --- /dev/null +++ b/src/emap/struct/itempair2.h @@ -0,0 +1,16 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#ifndef EVOL_MAP_STRUCT_ITEMPAIR2 +#define EVOL_MAP_STRUCT_ITEMPAIR2 + +#include "common/mmo.h" + +struct item_pair2 +{ + int index; + int amount; + int cards[MAX_SLOTS]; +}; + +#endif // EVOL_MAP_STRUCT_ITEMPAIR2 |