2020-12-19 00:15:41 +09: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.
|
|
|
|
|
|
2024-05-17 10:39:24 +02:00
|
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-25 16:50:00 +01:00
|
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge;
|
2020-12-19 00:15:41 +09:00
|
|
|
|
|
2020-12-25 16:50:00 +01:00
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
2020-12-19 00:15:41 +09:00
|
|
|
|
{
|
2020-12-25 17:00:00 +01:00
|
|
|
|
public partial class Playlists : OnlinePlayScreen
|
2020-12-19 00:15:41 +09:00
|
|
|
|
{
|
2020-12-24 16:18:35 +01:00
|
|
|
|
protected override string ScreenTitle => "Playlists";
|
|
|
|
|
|
2020-12-25 13:11:21 +09:00
|
|
|
|
protected override LoungeSubScreen CreateLounge() => new PlaylistsLoungeSubScreen();
|
2024-05-17 10:39:24 +02:00
|
|
|
|
|
|
|
|
|
public void Join(Room room) => Schedule(() => Lounge.Join(room, string.Empty));
|
2020-12-19 00:15:41 +09:00
|
|
|
|
}
|
|
|
|
|
}
|