diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/IFashionStorageSelect.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/IFashionStorageSelect.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/IFashionStorageSelect.cs b/Client/Assets/Scripts/XMainClient/IFashionStorageSelect.cs new file mode 100644 index 00000000..6593b1e7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/IFashionStorageSelect.cs @@ -0,0 +1,34 @@ +using System;
+using System.Collections.Generic;
+
+namespace XMainClient
+{
+ internal interface IFashionStorageSelect
+ {
+ bool Active { get; }
+
+ bool Select { get; set; }
+
+ bool ActivateAll { get; }
+
+ bool RedPoint { get; }
+
+ int GetID();
+
+ int GetCount();
+
+ void SetCount(uint count);
+
+ string GetName();
+
+ string GetLabel();
+
+ List<uint> GetItems();
+
+ uint[] GetFashionList();
+
+ List<AttributeCharm> GetAttributeCharm();
+
+ void Refresh();
+ }
+}
|