summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUICheckBox.cs
blob: 94555018f007cee7646f00e85f658ba97a082f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
	}
}