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(); } }