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

11 lines
104 B
C#
Raw Permalink Normal View History

2025-05-28 19:37:38 +08:00
namespace SimpleObjectPool
{
internal interface IPooledObject
{
void Free();
}
}