Files
2026-02-20 00:18:03 +05:00

14 lines
265 B
C#

namespace _Project.Develop.Runtime.Utilities
{
public class Buffer<T>
{
public T[] Items;
public int Count;
public Buffer(int initialSize)
{
Items = new T[initialSize];
Count = 0;
}
}
}