summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUIPopupList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIPopupList.cs')
-rw-r--r--Client/Assets/Scripts/UILib/IXUIPopupList.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIPopupList.cs b/Client/Assets/Scripts/UILib/IXUIPopupList.cs
new file mode 100644
index 00000000..1f656cee
--- /dev/null
+++ b/Client/Assets/Scripts/UILib/IXUIPopupList.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+
+namespace UILib
+{
+ public interface IXUIPopupList : IXUIObject
+ {
+ string value { get; set; }
+
+ int currentIndex { get; set; }
+
+ void SetOptionList(List<string> options);
+ }
+}