diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIList.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUIList.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIList.cs b/Client/Assets/Scripts/UILib/IXUIList.cs new file mode 100644 index 00000000..4b3a978b --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIList.cs @@ -0,0 +1,19 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUIList : IXUIObject
+ {
+ void Refresh();
+
+ void CloseList();
+
+ void SetAnimateSmooth(bool b);
+
+ void RegisterRepositionHandle(OnAfterRepostion reposition);
+
+ IUIRect GetParentUIRect();
+
+ IUIPanel GetParentPanel();
+ }
+}
|