1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

Add back GetHashCode.

This commit is contained in:
Huo Yaoyuan 2017-05-18 05:27:20 +08:00
parent ffbab6bfeb
commit cd065b8ff3

View File

@ -45,6 +45,8 @@ namespace osu.Game.Online.Chat
public int CompareTo(Message other) => Id.CompareTo(other.Id);
public bool Equals(Message other) => Id == other?.Id;
public override int GetHashCode() => Id.GetHashCode();
}
public enum TargetType