1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 14:27:46 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsLoungeSubScreen.cs

18 lines
646 B
C#
Raw Normal View History

2020-12-20 23:36:56 +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.
2020-12-25 13:38:11 +09:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Lounge;
using osu.Game.Screens.OnlinePlay.Lounge.Components;
using osu.Game.Screens.OnlinePlay.Match;
2020-12-20 23:36:56 +09:00
namespace osu.Game.Screens.OnlinePlay.Playlists
2020-12-20 23:36:56 +09:00
{
2020-12-25 13:11:21 +09:00
public class PlaylistsLoungeSubScreen : LoungeSubScreen
2020-12-20 23:36:56 +09:00
{
2020-12-25 13:11:21 +09:00
protected override FilterControl CreateFilterControl() => new PlaylistsFilterControl();
2020-12-21 00:21:30 +09:00
2020-12-25 13:11:21 +09:00
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new PlaylistsRoomSubScreen(room);
2020-12-20 23:36:56 +09:00
}
}