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

12 lines
220 B
C#
Raw Normal View History

2025-03-12 20:59:12 +08:00
public 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);
}