summaryrefslogtreecommitdiff
path: root/src/emap/struct
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-05-30 01:22:54 +0300
committerAndrei Karas <akaras@inbox.ru>2017-05-30 01:22:54 +0300
commitd87f223424d15b6192f4873b9bdfd7818c695475 (patch)
treec85c693ae54b77b4df56f950a405a7679a3c40d2 /src/emap/struct
parente7fa48986510956c22298a96ab1ea3b9eda4f1bd (diff)
downloadevol-hercules-d87f223424d15b6192f4873b9bdfd7818c695475.tar.gz
evol-hercules-d87f223424d15b6192f4873b9bdfd7818c695475.tar.bz2
evol-hercules-d87f223424d15b6192f4873b9bdfd7818c695475.tar.xz
evol-hercules-d87f223424d15b6192f4873b9bdfd7818c695475.zip
Add support for creating items with cards in craft.s20170605
Diffstat (limited to 'src/emap/struct')
-rw-r--r--src/emap/struct/itempair2.h16
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