using UnityEngine; public interface IPoolable where T : MonoBehaviour,IPoolable { public BasePool OwningPool { set; } public void ReturnToPool(); }