summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/ILuaUIManager.cs
blob: cbff5c4cd6a556c4a81c89a8e4ad8a376332c9f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace XUtliPoolLib
{
	public interface ILuaUIManager
	{
		bool IsUIShowed();

		bool Load(string name);

		bool Hide(string name);

		bool Destroy(string name);

		void Clear();
	}
}