mirror of
https://github.com/osukey/osukey.git
synced 2025-06-27 22:27:57 +09:00
Add back GetHashCode.
This commit is contained in:
parent
ffbab6bfeb
commit
cd065b8ff3
@ -45,6 +45,8 @@ namespace osu.Game.Online.Chat
|
|||||||
public int CompareTo(Message other) => Id.CompareTo(other.Id);
|
public int CompareTo(Message other) => Id.CompareTo(other.Id);
|
||||||
|
|
||||||
public bool Equals(Message other) => Id == other?.Id;
|
public bool Equals(Message other) => Id == other?.Id;
|
||||||
|
|
||||||
|
public override int GetHashCode() => Id.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum TargetType
|
public enum TargetType
|
||||||
|
Loading…
x
Reference in New Issue
Block a user