summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_libs.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-02-05 12:46:36 +0100
committerRobert Vollmert <rvollmert@gmx.net>2010-02-05 13:24:50 +0100
commit868cb593515f77b0f6f54f3e9952dbd7d99f3892 (patch)
treea247e3e98cae15ee74aeb1e0a9fec20bf6dbae56 /crawl-ref/source/l_libs.h
parenta85e4c549ffadc2b64dacdbba428d2af782acee3 (diff)
downloadcrawl-ref-868cb593515f77b0f6f54f3e9952dbd7d99f3892.tar.gz
crawl-ref-868cb593515f77b0f6f54f3e9952dbd7d99f3892.zip
Allow passing of monster_info arguments via CLua::push_args.
These are marked as 'I'.
Diffstat (limited to 'crawl-ref/source/l_libs.h')
-rw-r--r--crawl-ref/source/l_libs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/l_libs.h b/crawl-ref/source/l_libs.h
index cb3dd2e68f..f042d97eee 100644
--- a/crawl-ref/source/l_libs.h
+++ b/crawl-ref/source/l_libs.h
@@ -80,4 +80,7 @@ int dgn_map_add_transform(lua_State *ls,
void clua_push_item(lua_State *ls, item_def *item);
+class monster_info;
+void lua_push_moninf(lua_State *ls, monster_info *mi);
+
#endif