1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 06:17:50 +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.

18 lines
588 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.Online.Rooms;
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 partial 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();
public void Join(Room room) => Schedule(() => Lounge.Join(room, string.Empty));
2020-12-18 23:15:41 +08:00
}
}