diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUICheckBox.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUICheckBox.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUICheckBox.cs b/Client/Assets/Scripts/UILib/IXUICheckBox.cs new file mode 100644 index 00000000..94555018 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUICheckBox.cs @@ -0,0 +1,29 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUICheckBox : IXUIObject
+ {
+ bool bChecked { get; set; }
+
+ bool bInstantTween { get; set; }
+
+ int spriteHeight { get; set; }
+
+ int spriteWidth { get; set; }
+
+ void RegisterOnCheckEventHandler(CheckBoxOnCheckEventHandler eventHandler);
+
+ CheckBoxOnCheckEventHandler GetCheckEventHandler();
+
+ void SetEnable(bool bEnable);
+
+ void ForceSetFlag(bool bCheckd);
+
+ void SetAlpha(float f);
+
+ void SetAudioClip(string name);
+
+ void SetGroup(int group);
+ }
+}
|