diff options
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/ILuaUIManager.cs')
-rw-r--r-- | Client/Assets/Scripts/XUtliPoolLib/ILuaUIManager.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/ILuaUIManager.cs b/Client/Assets/Scripts/XUtliPoolLib/ILuaUIManager.cs new file mode 100644 index 00000000..cbff5c4c --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/ILuaUIManager.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XUtliPoolLib
+{
+ public interface ILuaUIManager
+ {
+ bool IsUIShowed();
+
+ bool Load(string name);
+
+ bool Hide(string name);
+
+ bool Destroy(string name);
+
+ void Clear();
+ }
+}
|