using UnityEngine; using UnityEngine.Pool; namespace XED.Interfaces { public interface IPooledObject { public IObjectPool Pool { get; set; } } }