diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUISpecLabelSymbol.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUISpecLabelSymbol.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUISpecLabelSymbol.cs b/Client/Assets/Scripts/UILib/IXUISpecLabelSymbol.cs new file mode 100644 index 00000000..8f1a95c2 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUISpecLabelSymbol.cs @@ -0,0 +1,25 @@ +using System;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace UILib
+{
+ public interface IXUISpecLabelSymbol : IXUIObject
+ {
+ IXUILabel Label { get; }
+
+ IXUISprite Board { get; }
+
+ IXUISprite[] SpriteList { get; }
+
+ void SetColor(Color color);
+
+ Color GetColor();
+
+ void SetInputText(List<string> sprite);
+
+ void Copy(IXUISpecLabelSymbol other);
+
+ void SetSpriteVisibleFalse(int index);
+ }
+}
|