Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/UniRx/IStructuralComparable.cs
2025-08-13 09:26:42 +08:00

10 lines
144 B
C#

using System.Collections;
namespace UniRx
{
public interface IStructuralComparable
{
int CompareTo(object other, IComparer comparer);
}
}