Remove explicit public definition

Interface members are public by default.
This commit is contained in:
smoogipoo 2021-03-03 19:03:44 +09:00
parent d332fd2414
commit 012b48dbe5
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ public interface IHandlePresentBeatmap
/// </summary>
/// <param name="beatmap">The beatmap to be selected.</param>
/// <param name="ruleset">The ruleset to be selected.</param>
public void PresentBeatmap(WorkingBeatmap beatmap, RulesetInfo ruleset);
void PresentBeatmap(WorkingBeatmap beatmap, RulesetInfo ruleset);
}
}