summaryrefslogtreecommitdiff
path: root/src/script.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-11-12 03:21:40 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-11-29 19:13:39 +0200
commitea8d6d7abd86b33169b8c2b80cd382d82ba84b8b (patch)
treee64005d5e451927dcdb2e3a44ad5707491a58742 /src/script.h
parentf145d498a6d91e3f5f3dcf921db8b74c98a7dad2 (diff)
downloadminetest-ea8d6d7abd86b33169b8c2b80cd382d82ba84b8b.tar.gz
minetest-ea8d6d7abd86b33169b8c2b80cd382d82ba84b8b.tar.bz2
minetest-ea8d6d7abd86b33169b8c2b80cd382d82ba84b8b.zip
Scripting WIP
Diffstat (limited to 'src/script.h')
-rw-r--r--src/script.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/script.h b/src/script.h
index 82254744f..5f3b3912b 100644
--- a/src/script.h
+++ b/src/script.h
@@ -26,7 +26,6 @@ typedef struct lua_State lua_State;
lua_State* script_init();
lua_State* script_deinit(lua_State *L);
void script_error(lua_State *L, const char *fmt, ...);
-void script_call_va(lua_State *L, const char *func, const char *sig, ...);
bool script_load(lua_State *L, const char *path);
#endif