Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IComparer.cs
Go to the documentation of this file.
1namespace System.Collections;
2
3public interface IComparer
4{
5 int Compare(object? x, object? y);
6}
int Compare(object? x, object? y)