#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 = 0);
	void LoadScripts(const TCHAR *scriptDir, int iGroup = 0);

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

#endif //_LUA_SCRIPT_LOADER_H_