2020-12-18 23:15:41 +08: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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge;
|
2020-12-18 23:15:41 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
2020-12-18 23:15:41 +08:00
|
|
|
{
|
2020-12-26 00:00:00 +08:00
|
|
|
public class Playlists : OnlinePlayScreen
|
2020-12-18 23:15:41 +08:00
|
|
|
{
|
2020-12-24 23:18:35 +08:00
|
|
|
protected override string ScreenTitle => "Playlists";
|
|
|
|
|
2020-12-25 12:11:21 +08:00
|
|
|
protected override LoungeSubScreen CreateLounge() => new PlaylistsLoungeSubScreen();
|
2020-12-18 23:15:41 +08:00
|
|
|
}
|
|
|
|
}
|