using System; namespace MoonTools.ECS { public readonly record struct Entity { public uint ID { get; } internal Entity(uint id) { ID = id; } } }