summaryrefslogtreecommitdiff
path: root/scripting/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/test.cpp')
-rw-r--r--scripting/test.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripting/test.cpp b/scripting/test.cpp
index 1a378b7..5ec27da 100644
--- a/scripting/test.cpp
+++ b/scripting/test.cpp
@@ -9,3 +9,10 @@ void print(lua_State *L, const char *s) {
lua_pop(L, 1);
lua->print(s);
}
+
+void say(lua_State *L, const char *s) {
+ lua_getglobal(L, "lua_instance");
+ Lua *lua = static_cast<Lua*>(lua_touserdata(L, -1));
+ lua_pop(L, 1);
+ lua->say(s);
+}