1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 17:53:21 +08:00

Remove unnecessary public prefix in interface specification

This commit is contained in:
Dean Herbert 2021-08-17 16:22:12 +09:00
parent 82eddeffef
commit 6ee6a46894

View File

@ -12,6 +12,6 @@ namespace osu.Game.Screens.Play
/// <summary>
/// Whether the local user is currently playing.
/// </summary>
public IBindable<bool> IsPlaying { get; }
IBindable<bool> IsPlaying { get; }
}
}