using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Pool; namespace FirstVillain.ObjectPool { public class PoolItem { public string Path { get; private set; } public IObjectPool Pool { get; private set; } public PoolItem(string path, ObjectPool pool) { Path = path; Pool = pool; } } }