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

17 lines
283 B
C#
Raw Normal View History

2025-07-11 21:00:00 +08:00
namespace SimpleObjectPool
{
internal interface IMixedObjectFactory<T> where T : class
{
T Create(string typeName);
void Destroy(string typeName, T obj);
void Reset(string typeName, T obj);
bool Validate(string typeName, T obj);
}
}