diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIBillBoardCompRef.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUIBillBoardCompRef.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIBillBoardCompRef.cs b/Client/Assets/Scripts/UILib/IXUIBillBoardCompRef.cs new file mode 100644 index 00000000..39533c73 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIBillBoardCompRef.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUIBillBoardCompRef
+ {
+ IXUISpecLabelSymbol NameSpecLabelSymbol { get; }
+
+ IXUISpecLabelSymbol GuildSpecLabelSymbol { get; }
+
+ IXUISpecLabelSymbol DesiSpecLabelSymbol { get; }
+
+ IXUIProgress BloodBar { get; }
+
+ IXUIProgress IndureBar { get; }
+ }
+}
|