com.alicizax.unity.ui.exten.../Runtime/RecyclerView/ObjectPool/IPooledObject.cs
2025-05-28 19:37:38 +08:00

11 lines
104 B
C#

namespace SimpleObjectPool
{
internal interface IPooledObject
{
void Free();
}
}