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

13 lines
210 B
C#
Raw Normal View History

2025-12-26 14:22:46 +08:00
namespace AlicizaX.UI
2025-05-28 19:37:38 +08:00
{
using System;
2025-12-26 14:22:46 +08:00
public interface IMixedObjectPool<T> : IDisposable where T : class
2025-05-28 19:37:38 +08:00
{
T Allocate(string typeName);
void Free(string typeName, T obj);
}
}