summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IXGameUI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/IXGameUI.cs')
-rw-r--r--Client/Assets/Scripts/XUtliPoolLib/IXGameUI.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/IXGameUI.cs b/Client/Assets/Scripts/XUtliPoolLib/IXGameUI.cs
new file mode 100644
index 00000000..593a067d
--- /dev/null
+++ b/Client/Assets/Scripts/XUtliPoolLib/IXGameUI.cs
@@ -0,0 +1,26 @@
+using System;
+using UnityEngine;
+
+namespace XUtliPoolLib
+{
+ public interface IXGameUI : IXInterface
+ {
+ Transform UIRoot { get; set; }
+
+ GameObject[] buttonTpl { get; }
+
+ GameObject[] spriteTpl { get; }
+
+ GameObject DlgControllerTpl { get; }
+
+ int Base_UI_Width { get; set; }
+
+ int Base_UI_Height { get; set; }
+
+ Camera UICamera { get; set; }
+
+ void OnGenericClick();
+
+ void SetOverlayAlpha(float alpha);
+ }
+}