summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUIObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIObject.cs')
-rw-r--r--Client/Assets/Scripts/UILib/IXUIObject.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIObject.cs b/Client/Assets/Scripts/UILib/IXUIObject.cs
new file mode 100644
index 00000000..d0a39b10
--- /dev/null
+++ b/Client/Assets/Scripts/UILib/IXUIObject.cs
@@ -0,0 +1,26 @@
+using System;
+using UnityEngine;
+
+namespace UILib
+{
+ public interface IXUIObject
+ {
+ GameObject gameObject { get; }
+
+ IXUIObject parent { get; set; }
+
+ ulong ID { get; set; }
+
+ bool Exculsive { get; set; }
+
+ IXUIObject GetUIObject(string strName);
+
+ bool IsVisible();
+
+ void SetVisible(bool bVisible);
+
+ void OnFocus();
+
+ void Highlight(bool bTrue);
+ }
+}