MoonTools.ECS/src/State/EntityStorageState.cs

11 lines
182 B
C#

using System.Collections.Generic;
namespace MoonTools.ECS
{
internal class EntityStorageState
{
public int NextID;
public List<int> availableIDs = new List<int>();
}
}