Add Equals method to IssueTemplate

This will be useful in tests.
This commit is contained in:
Naxess 2021-04-13 01:21:34 +02:00
parent 19a154ddf1
commit d8088777ea

View File

@ -70,5 +70,7 @@ namespace osu.Game.Rulesets.Edit.Checks.Components
}
}
}
public bool Equals(IssueTemplate other) => other.Type == Type && other.UnformattedMessage == UnformattedMessage;
}
}