com.alicizax.unity.ui.exten.../Runtime/RecyclerView/ObjectPool/IObjectFactory.cs
陈思海 dc8c840d69 RecyclerView 大优化
优化RecycleView 渲染架构
优化RecyclerView 渲染性能 增加 缓存 异步
增加Navagation导航锚点相关
2026-03-31 15:18:50 +08:00

14 lines
202 B
C#

namespace AlicizaX.UI
{
public interface IObjectFactory<T> where T : class
{
T Create();
void Destroy(T obj);
void Reset(T obj);
bool Validate(T obj);
}
}