1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17: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 Bindable<int?> Seed { get; }
Bindable<int?> Seed { get; }
}
public class SeedSettingsControl : SettingsItem<int?>