summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUIObject.cs
blob: d0a39b1055094e1632f2ddabc09257ea052ba909 (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
using System;
using UnityEngine;

namespace UILib
{
	public interface IXUIObject
	{
		GameObject gameObject { get; }

		IXUIObject parent { get; set; }

		ulong ID { get; set; }

		bool Exculsive { get; set; }

		IXUIObject GetUIObject(string strName);

		bool IsVisible();

		void SetVisible(bool bVisible);

		void OnFocus();

		void Highlight(bool bTrue);
	}
}