Files
2026-07-13 13:13:17 +08:00

7 lines
135 B
C#

namespace T3.Core.Utils.ObjectPooling;
public interface ObjectPoolBase<T>
{
public T Get();
public void Return(T obj);
}