Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ConcurrentSetItem.cs
Go to the documentation of this file.
2
3internal abstract class ConcurrentSetItem<KeyType, ItemType> where ItemType : ConcurrentSetItem<KeyType, ItemType>
4{
5 public abstract int Compare(ItemType other);
6
7 public abstract int Compare(KeyType key);
8}