summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUIInterface.cs
blob: e80ac9ab57730ae019332d233226a8d6e90f1aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace UILib
{
	public interface IXUIInterface
	{
		void ShowUI(string name);

		void HideUI(string name);

		void SetCustomId(string dlgName, string widgetName, uint ID);
	}
}