summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_libs.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-20 22:22:22 +0200
committerRobert Vollmert <rvollmert@gmx.net>2009-10-20 22:27:39 +0200
commit1d595f47d0064f85ce2b6c37eaae74205146b3a5 (patch)
treeefb40d30b427b281aee76a0f290f1f336789784b /crawl-ref/source/l_libs.h
parentc6df756b86ae4e28bc342dffa6ab41a7c865fa9a (diff)
downloadcrawl-ref-1d595f47d0064f85ce2b6c37eaae74205146b3a5.tar.gz
crawl-ref-1d595f47d0064f85ce2b6c37eaae74205146b3a5.zip
Comments and renaming for consistency.
Diffstat (limited to 'crawl-ref/source/l_libs.h')
-rw-r--r--crawl-ref/source/l_libs.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/l_libs.h b/crawl-ref/source/l_libs.h
index 05c71dca4d..ccf02d5369 100644
--- a/crawl-ref/source/l_libs.h
+++ b/crawl-ref/source/l_libs.h
@@ -9,13 +9,14 @@
#include "clua.h"
/*
- * Loaders for clua.
+ * Library loaders for clua.
*/
void cluaopen_crawl(lua_State *ls);
void cluaopen_file(lua_State *ls);
void cluaopen_food(lua_State *ls);
void cluaopen_item(lua_State *ls);
+void cluaopen_kills(lua_State *ls); // defined in kills.cc
void cluaopen_monsters(lua_State *ls);
void cluaopen_options(lua_State *ls);
void cluaopen_you(lua_State *ls);
@@ -23,7 +24,8 @@ void cluaopen_you(lua_State *ls);
void cluaopen_globals(lua_State *ls);
/*
- * Libraries and loaders, accessed from init_dungeon_lua().
+ * Libraries and loaders for dlua, accessed from init_dungeon_lua().
+ * TODO: Move these to dluaopen_*.
*/
extern const struct luaL_reg debug_dlib[];