summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cluautil.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-27 21:25:59 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-10-27 23:16:54 +0100
commitbf18513ac06c9a214f07c9a90560ebb8356ae1b0 (patch)
tree8e229f6aabf9db877b20f4a368b669d93309f87d /crawl-ref/source/cluautil.h
parent227fc6f7a56b489b3758ab4c89714d0c447b10b3 (diff)
downloadcrawl-ref-bf18513ac06c9a214f07c9a90560ebb8356ae1b0.tar.gz
crawl-ref-bf18513ac06c9a214f07c9a90560ebb8356ae1b0.zip
Add lua binding for inspecting env.show.
Diffstat (limited to 'crawl-ref/source/cluautil.h')
-rw-r--r--crawl-ref/source/cluautil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/cluautil.h b/crawl-ref/source/cluautil.h
index 2acbcf18f6..8ea98028ee 100644
--- a/crawl-ref/source/cluautil.h
+++ b/crawl-ref/source/cluautil.h
@@ -149,6 +149,9 @@ level_id dlua_level_id(lua_State *ls, int ndx);
#define COORDS(c, p1, p2) \
GETCOORD(c, p1, p2, in_bounds)
+#define COORDSHOW(c, p1, p2) \
+ GETCOORD(c, p1, p2, in_show_bounds)
+
#define FEAT(f, pos) \
dungeon_feature_type f = check_lua_feature(ls, pos)