summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/luaterp.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2013-11-15 03:30:37 -0500
committerNeil Moore <neil@s-z.org>2013-11-15 03:30:37 -0500
commit0b10bd3b8a6972c625a3e7ea1a87c6160918b080 (patch)
treef13cd5219437a550cd32747de355ee46e673719f /crawl-ref/source/luaterp.h
parent5f91bcc093016843890b92342dcc3d5b7568d418 (diff)
downloadcrawl-ref-0b10bd3b8a6972c625a3e7ea1a87c6160918b080.tar.gz
crawl-ref-0b10bd3b8a6972c625a3e7ea1a87c6160918b080.zip
Wizmode command &^U for a clua prompt.
Works just like &^T, but uses clua instead of dlua.
Diffstat (limited to 'crawl-ref/source/luaterp.h')
-rw-r--r--crawl-ref/source/luaterp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/luaterp.h b/crawl-ref/source/luaterp.h
index f12136ec0c..8d0954cce6 100644
--- a/crawl-ref/source/luaterp.h
+++ b/crawl-ref/source/luaterp.h
@@ -1,7 +1,10 @@
#ifndef DEBUGLUA_H
#define DEBUGLUA_H
-void debug_terp_dlua();
+#include "clua.h"
+#include "dlua.h"
+
+void debug_terp_dlua(CLua &vm = dlua);
bool luaterp_running();
#endif