com.alicizax.unity.ui.exten.../Runtime/RecyclerView/ObjectPool/IMixedObjectPool.cs
2025-12-26 14:22:46 +08:00

13 lines
210 B
C#

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