1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 16:37:26 +08:00

Remove unnecessary public accessibility

All interface members are implicitly public.
This commit is contained in:
smoogipoo 2021-06-23 12:00:38 +09:00
parent fc224c53f4
commit 6fd020d91d

View File

@ -12,7 +12,7 @@ namespace osu.Game.Rulesets.Mods
{ {
public interface IHasSeed public interface IHasSeed
{ {
public Bindable<int?> Seed { get; } Bindable<int?> Seed { get; }
} }
public class SeedSettingsControl : SettingsItem<int?> public class SeedSettingsControl : SettingsItem<int?>