summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs')
-rw-r--r--Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs b/Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs
new file mode 100644
index 00000000..4fa28dbf
--- /dev/null
+++ b/Client/Assets/Scripts/XUtliPoolLib/ILuaEngine.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace XUtliPoolLib
+{
+ public interface ILuaEngine
+ {
+ IHotfixManager hotfixMgr { get; }
+
+ ILuaUIManager luaUIManager { get; }
+
+ ILuaGameInfo luaGameInfo { get; }
+
+ void InitLua();
+ }
+}