summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs
blob: 4fa28dbfa4b1132f291434af5970d6ec3e943384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace XUtliPoolLib
{
	public interface ILuaEngine
	{
		IHotfixManager hotfixMgr { get; }

		ILuaUIManager luaUIManager { get; }

		ILuaGameInfo luaGameInfo { get; }

		void InitLua();
	}
}