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