cull(engine-cleanup): pass-9 cascade round 3 after UIPanel stub

This commit is contained in:
gamer147
2026-07-03 23:31:57 -04:00
parent 18844b2233
commit 0103050fe0
5 changed files with 0 additions and 122 deletions

View File

@@ -33,26 +33,6 @@ public class BetterList<T>
buffer = array;
}
private void Trim()
{
if (size > 0)
{
if (size < buffer.Length)
{
T[] array = new T[size];
for (int i = 0; i < size; i++)
{
array[i] = buffer[i];
}
buffer = array;
}
}
else
{
buffer = null;
}
}
public void Clear()
{
size = 0;