summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IXDragonExpedition.cs
blob: 83b051960093b82dc607a133cfa5174e57038c33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using UnityEngine;

namespace XUtliPoolLib
{
	public interface IXDragonExpedition
	{
		void Drag(float delta);

		void Assign(float delta);

		GameObject Click();

		Transform GetGO(string name);

		void SetLimitPos(float MinPos);

		Camera GetDragonCamera();
	}
}