AlicizaX/Client/Packages/com.alicizax.unity.ui.extension/Runtime/RecyclerView/ObjectPool/IMixedObjectPool.cs

13 lines
217 B
C#
Raw Normal View History

2025-07-11 21:00:00 +08:00
namespace SimpleObjectPool
{
using System;
internal interface IMixedObjectPool<T> : IDisposable where T : class
{
T Allocate(string typeName);
void Free(string typeName, T obj);
}
}