blob: 7088706387cd2421a62e4e1be4f18d23d6c37cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _LUA_SCRIPT_LOADER_H_
#define _LUA_SCRIPT_LOADER_H_
class CLuaScriptLoader
{
private:
lua_State *L;
HANDLE hLogger;
CLuaScriptLoader(lua_State *L);
void RegisterScriptsFolder(const char *path);
void LoadScript(const TCHAR *path, int iGroup);
void LoadScripts(const TCHAR *scriptDir, int iGroup);
public:
static void Load(lua_State *L);
};
#endif //_LUA_SCRIPT_LOADER_H_
|