hashsets cant set capacity lol

pull/5/head
Evan Hemsley 2019-12-05 17:07:54 -08:00
parent c11b5720b7
commit 8a676b3e4b
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace Encompass
{
private readonly Dictionary<Guid, Entity> IDToEntity = new Dictionary<Guid, Entity>(1024);
private readonly HashSet<Entity> entitiesMarkedForDestroy = new HashSet<Entity>(256);
private readonly HashSet<Entity> entitiesMarkedForDestroy = new HashSet<Entity>();
private readonly ComponentManager componentManager;