com.alicizax.unity.ui.exten.../Runtime/RecyclerView/ObjectPool/IMixedObjectPool.cs
2025-05-28 19:37:38 +08:00

13 lines
217 B
C#

namespace SimpleObjectPool
{
using System;
internal interface IMixedObjectPool<T> : IDisposable where T : class
{
T Allocate(string typeName);
void Free(string typeName, T obj);
}
}