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