Files
RedHotRoast-ios/Assets/Scripts/Pool/ObjectPool/ListPool.cs
T

24 lines
492 B
C#
Raw Normal View History

2026-04-22 09:52:55 +08:00
using System.Collections.Generic;
namespace FlowerPower
{
public static class ListPool<T>
{
private static readonly ObjectPool<List<T>> s_ListPool = new(null, Clear);
private static void Clear(List<T> l)
{
l.Clear();
}
public static List<T> Get()
{
return s_ListPool.Get();
}
public static void Release(List<T> toRelease)
{
s_ListPool.Release(toRelease);
}
}
}