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

12 lines
197 B
C#

using System.Collections;
namespace UniRx
{
public interface IStructuralEquatable
{
bool Equals(object other, IEqualityComparer comparer);
int GetHashCode(IEqualityComparer comparer);
}
}