2023-10-20 08:17:03 +00:00
|
|
|
using System;
|
|
|
|
|
2023-10-19 22:41:49 +00:00
|
|
|
namespace MoonTools.ECS.Rev2
|
|
|
|
{
|
2023-10-20 08:17:03 +00:00
|
|
|
public readonly record struct ComponentId(int Id) : IHasId, IComparable<ComponentId>
|
|
|
|
{
|
|
|
|
public int CompareTo(ComponentId other)
|
|
|
|
{
|
|
|
|
return Id.CompareTo(other.Id);
|
|
|
|
}
|
|
|
|
}
|
2023-10-19 22:41:49 +00:00
|
|
|
}
|