Files
riversong-code-showcase/Source/Riversong/Game/CommonServices/Pooling/IPoolingService.cs
2026-05-21 16:04:49 +02:00

11 lines
256 B
C#

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