mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
14 lines
265 B
C#
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;
|
|
}
|
|
}
|
|
} |