osu/osu.Game/Screens/OnlinePlay/Match/RoomBackgroundScreen.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
710 B
C#
Raw Normal View History

2021-08-20 09:14:12 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Components;
namespace osu.Game.Screens.OnlinePlay.Match
{
public partial class RoomBackgroundScreen : OnlinePlayBackgroundScreen
{
2023-06-24 15:11:38 +00:00
public readonly Bindable<PlaylistItem?> SelectedItem = new Bindable<PlaylistItem?>();
2021-08-20 09:14:12 +00:00
2023-06-24 15:11:38 +00:00
public RoomBackgroundScreen(PlaylistItem? initialPlaylistItem)
2021-08-20 09:14:12 +00:00
{
2021-08-20 12:40:35 +00:00
PlaylistItem = initialPlaylistItem;
2021-08-20 09:14:12 +00:00
SelectedItem.BindValueChanged(item => PlaylistItem = item.NewValue);
}
}
}