using System; namespace MoonTools.ECS.Rev2 { internal readonly record struct ComponentId(int Id) : IHasId, IComparable { public int CompareTo(ComponentId other) { return Id.CompareTo(other.Id); } } }