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

Fix resolve

This commit is contained in:
smoogipoo 2021-02-16 19:26:51 +09:00
parent 2a1096a3c8
commit e24a5949c5

View File

@ -58,7 +58,7 @@ namespace osu.Game.Screens.OnlinePlay
/// May be null if this <see cref="OnlinePlayComposite"/> is not inside a <see cref="RoomSubScreen"/>. /// May be null if this <see cref="OnlinePlayComposite"/> is not inside a <see cref="RoomSubScreen"/>.
/// </summary> /// </summary>
[CanBeNull] [CanBeNull]
[Resolved(typeof(Room), CanBeNull = true)] [Resolved(CanBeNull = true)]
protected IBindable<PlaylistItem> SelectedItem { get; private set; } protected IBindable<PlaylistItem> SelectedItem { get; private set; }
} }
} }