summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_libs.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/l_libs.h')
-rw-r--r--crawl-ref/source/l_libs.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/crawl-ref/source/l_libs.h b/crawl-ref/source/l_libs.h
index bf721ab3a2..f6903f5118 100644
--- a/crawl-ref/source/l_libs.h
+++ b/crawl-ref/source/l_libs.h
@@ -3,11 +3,16 @@
* Summary: Library definitions for dlua.
*/
+#ifndef L_LIBS_H
+#define L_LIBS_H
+
#include "clua.h"
extern const struct luaL_reg crawl_lib[];
extern const struct luaL_reg dgn_lib[];
extern const struct luaL_reg dgn_event_lib[];
+extern const struct luaL_reg dgn_item_lib[];
+extern const struct luaL_reg dgn_mons_lib[];
extern const struct luaL_reg file_lib[];
extern const struct luaL_reg los_lib[];
extern const struct luaL_reg mapmarker_lib[];
@@ -17,6 +22,9 @@ void luaopen_dgnevent(lua_State *ls);
void luaopen_mapmarker(lua_State *ls);
void luaopen_ray(lua_State *ls);
-void register_mapdef_tables(lua_State *ls);
+void register_monslist(lua_State *ls);
+void register_itemlist(lua_State *ls);
void register_builder_funcs(lua_State *ls);
+#endif
+