diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-15 13:28:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-15 13:29:41 +0300 |
commit | 8fe6b497e0bce5999973321fbde89ff080647c8b (patch) | |
tree | 1c43748e06994dc83e3026d293192aa94cbf4036 /src/map/send.h | |
parent | 8b0242f57a9e1f335ebe20745253e8b0e4e501f1 (diff) | |
download | evol-hercules-8fe6b497e0bce5999973321fbde89ff080647c8b.tar.gz evol-hercules-8fe6b497e0bce5999973321fbde89ff080647c8b.tar.bz2 evol-hercules-8fe6b497e0bce5999973321fbde89ff080647c8b.tar.xz evol-hercules-8fe6b497e0bce5999973321fbde89ff080647c8b.zip |
map: add functions to send npc command.
Diffstat (limited to 'src/map/send.h')
-rw-r--r-- | src/map/send.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/map/send.h b/src/map/send.h new file mode 100644 index 0000000..6a324b9 --- /dev/null +++ b/src/map/send.h @@ -0,0 +1,10 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_MAP_PC +#define EVOL_MAP_PC + +void send_npccommand (struct map_session_data *sd, int npcId, int cmd); +void send_npccommand2 (struct map_session_data *sd, int npcId, int cmd, int id, int x, int y); + +#endif // EVOL_MAP_PC |