Fixing some VectorArena to use external arena and reduce the number of alloc.

Made the passing of name to arena more flexible
This commit is contained in:
2026-02-14 22:28:32 -05:00
parent 36ee786128
commit 38f8662d80
7 changed files with 41 additions and 27 deletions

View File

@@ -14,7 +14,7 @@ namespace Game
void InitEntityManager(Juliet::NonNullPtr<Juliet::Arena> arena)
{
Manager.Arena = arena.Get();
Manager.Entities.Create(arena);
Manager.Entities.Create(arena JULIET_DEBUG_PARAM("Entities"));
}
void ShutdownEntityManager()