summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-08-22 18:53:11 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-08-22 18:53:11 +0000
commit507d5f485deddbd551d844aefb5c6646ad18b461 (patch)
treede1c61b30e8f77d801aa1b6e46f310e46d26253d /src/map/map.h
parentdb0184a272d0fbb1b09d4eba6527181b85890357 (diff)
downloadhercules-507d5f485deddbd551d844aefb5c6646ad18b461.tar.gz
hercules-507d5f485deddbd551d844aefb5c6646ad18b461.tar.bz2
hercules-507d5f485deddbd551d844aefb5c6646ad18b461.tar.xz
hercules-507d5f485deddbd551d844aefb5c6646ad18b461.zip
- Mercenary data structures.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13110 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h
index 5a7fed46e..bb4b0a94c 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -176,6 +176,7 @@ enum bl_type {
BL_SKILL = 0x020,
BL_NPC = 0x040,
BL_CHAT = 0x080,
+ BL_MER = 0x100,
BL_ALL = 0xFFF,
};
@@ -631,6 +632,7 @@ typedef struct chat_data TBL_CHAT;
typedef struct skill_unit TBL_SKILL;
typedef struct pet_data TBL_PET;
typedef struct homun_data TBL_HOM;
+typedef struct mercenary_data TBL_MER;
#define BL_CAST(type_, bl) \
( ((bl) == (struct block_list*)NULL || (bl)->type != (type_)) ? (T ## type_ *)NULL : (T ## type_ *)(bl) )