diff options
author | chai <chaifix@163.com> | 2021-01-27 14:15:08 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-27 14:15:08 +0800 |
commit | 1fe4ffba72f56ccc6a89d1896142425c666887d4 (patch) | |
tree | e469b6fea9454938d3a26444982be4b25de37103 /Client/Assets/Scripts/UILib/IXUILabelSymbol.cs | |
parent | 310103405588040c7bc777c802273556343cae92 (diff) |
+UILib 反编译
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUILabelSymbol.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUILabelSymbol.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUILabelSymbol.cs b/Client/Assets/Scripts/UILib/IXUILabelSymbol.cs new file mode 100644 index 00000000..ca0113c0 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUILabelSymbol.cs @@ -0,0 +1,33 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUILabelSymbol : IXUIObject
+ {
+ string InputText { set; }
+
+ IXUISprite IBoardSprite { get; }
+
+ void UpdateDepth(int depth);
+
+ void RegisterTeamEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterGuildEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterDragonGuildEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterItemEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterNameEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterPkEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterSpectateEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterUIEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterDefaultEventHandler(HyperLinkClickEventHandler eventHandler);
+
+ void RegisterSymbolClickHandler(LabelSymbolClickEventHandler eventHandler);
+ }
+}
|