Continue working on RHI

This commit is contained in:
2025-09-12 21:44:32 +09:00
parent 1b0ef03728
commit 1dfed83e38
49 changed files with 1780 additions and 2195 deletions

View File

@@ -47,7 +47,7 @@ public struct Entity : IEquatable<Entity>, IComparable<Entity>
public readonly bool Equals(Entity other)
{
return _id == other._id;
return _id == other._id && _generation == other._generation;
}
public readonly int CompareTo(Entity other)