com.alicizax.unity.ui.exten.../Runtime/RecyclerView/ObjectPool/IMixedObjectPool.cs

9 lines
159 B
C#
Raw Normal View History

2025-03-12 20:59:12 +08:00
using System;
public interface IMixedObjectPool<T> : IDisposable where T : class
{
T Allocate(string typeName);
void Free(string typeName, T obj);
}