summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IUIWidget.cs
blob: 53f29083c3c2169936cc8100ff8a2988c70a88ef (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace UILib
{
	public interface IUIWidget : IUIRect
	{
		IXUIPanel GetPanel();
	}
}