1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +08:00

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

17 lines
486 B
C#
Raw Normal View History

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