summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IXNGUICallback.cs
blob: e62c0c7876251c55de8836d11ea23ed7a3439f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using UnityEngine;

namespace XUtliPoolLib
{
	public interface IXNGUICallback
	{
		void RegisterClickEventHandler(IXNGUIClickEventHandler handler);

		GameObject SetXUILable(string name, string content);
	}
}