1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 06:07:25 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Playlists/Playlists.cs

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

15 lines
459 B
C#
Raw Normal View History

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.
using osu.Game.Screens.OnlinePlay.Lounge;
2020-12-18 23:15:41 +08:00
namespace osu.Game.Screens.OnlinePlay.Playlists
2020-12-18 23:15:41 +08:00
{
public class Playlists : OnlinePlayScreen
2020-12-18 23:15:41 +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
}
}