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

namespace XUtliPoolLib
{
	public interface IXTutorial : IXInterface
	{
		bool NoforceClick { get; }

		bool Exculsive { get; }

		void OnTutorialClicked();
	}
}