summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/src/mlua.h')
-rw-r--r--plugins/MirLua/src/mlua.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/MirLua/src/mlua.h b/plugins/MirLua/src/mlua.h
index bdeef96815..7a4ffd036b 100644
--- a/plugins/MirLua/src/mlua.h
+++ b/plugins/MirLua/src/mlua.h
@@ -4,13 +4,15 @@
class CMLua
{
private:
- lua_State *lua;
+ lua_State *L;
+
+ void Preload(const char *name, lua_CFunction func);
public:
CMLua();
~CMLua();
- static luaL_Reg CoreFunctions[10];
+ static luaL_Reg coreFunctions[10];
void Load(const char *name);
};