using UnityEngine.Pool; namespace DanieleMarotta.RiversongCodeShowcase { public interface IPoolingService { void AddPool(int key, IObjectPool pool) where T : class; IObjectPool GetPool(int key) where T : class; } }