Remove misplaced access modifier in interface specification

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert 2021-10-31 23:49:26 +09:00 committed by GitHub
parent e9ba1ea198
commit b63a90966b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public interface IScoreInfo : IHasOnlineID<long>
IRulesetInfo Ruleset { get; }
public ScoreRank Rank { get; }
ScoreRank Rank { get; }
// Mods is currently missing from this interface as the `IMod` class has properties which can't be fulfilled by `APIMod`,
// but also doesn't expose `Settings`. We can consider how to implement this in the future if required.