diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-24 18:20:55 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-24 18:20:55 +0000 |
commit | dc3d23e60aaad210be711844ab24b3a0a2b113aa (patch) | |
tree | 66c7b2bd3cb80ec53091059ebdc674ed03791629 /src/map/map.h | |
parent | af0c947f3ce68479a1d41612ace459e74dead363 (diff) | |
download | hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.tar.gz hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.tar.bz2 hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.tar.xz hercules-dc3d23e60aaad210be711844ab24b3a0a2b113aa.zip |
- Added function map_search_freecell to locate an available cell around an area (for recall/warping skills)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5732 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index 4ba04c905..b80f6f295 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -1236,6 +1236,7 @@ int map_addobject(struct block_list *); int map_delobject(int);
int map_delobjectnofree(int id);
void map_foreachobject(int (*)(struct block_list*,va_list),int,...);
+int map_search_freecell(struct block_list *src, int m, int *x,int *y, int rx, int ry, int flag);
//
int map_quit(struct map_session_data *);
// npc
|