summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_script_loader.h
blob: f213a467bc2d5319a0699c253d04f085cd8c90a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _LUA_SCRIPT_LOADER_H_
#define _LUA_SCRIPT_LOADER_H_

class CMLuaScriptLoader
{
private:
	lua_State *L;

	CMLuaScriptLoader(lua_State *L);

	void LoadScript(const wchar_t *scriptDir, const wchar_t *file);
	void LoadScripts();

public:
	static void Load(lua_State *L);
};

#endif //_LUA_SCRIPT_LOADER_H_