diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-18 17:34:59 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-18 17:34:59 +0000 |
commit | e901cc96b0095e523bae56da43766c9c821e6a91 (patch) | |
tree | c226b7d568d7685d933475dad687b8cb77433acd /src/map/map.h | |
parent | 991cacb6b346fad774395b4c192864f224f2d53b (diff) | |
download | hercules-e901cc96b0095e523bae56da43766c9c821e6a91.tar.gz hercules-e901cc96b0095e523bae56da43766c9c821e6a91.tar.bz2 hercules-e901cc96b0095e523bae56da43766c9c821e6a91.tar.xz hercules-e901cc96b0095e523bae56da43766c9c821e6a91.zip |
Initial Support for Shura and a few adjustments here and there.
- credits to 3ceam for the base.
- should you step by any bugs let us know, http://rathena.org/board/tracker
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15606 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 98833fe85..f55140847 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -591,6 +591,7 @@ int map_moveblock(struct block_list *, int, int, unsigned int); int map_foreachinrange(int (*func)(struct block_list*,va_list), struct block_list* center, int range, int type, ...); int map_foreachinshootrange(int (*func)(struct block_list*,va_list), struct block_list* center, int range, int type, ...); int map_foreachinarea(int (*func)(struct block_list*,va_list), int m, int x0, int y0, int x1, int y1, int type, ...); +int map_forcountinrange(int (*func)(struct block_list*,va_list), struct block_list* center, int range, int count, int type, ...); int map_forcountinarea(int (*func)(struct block_list*,va_list), int m, int x0, int y0, int x1, int y1, int count, int type, ...); int map_foreachinmovearea(int (*func)(struct block_list*,va_list), struct block_list* center, int range, int dx, int dy, int type, ...); int map_foreachincell(int (*func)(struct block_list*,va_list), int m, int x, int y, int type, ...); |