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

17 lines
283 B
C#
Raw Normal View History

2025-05-28 19:37:38 +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);
}
}