osu/osu.Game/Screens/Multi/RealtimeMultiplayer/RealtimeLoungeSubScreen.cs

18 lines
640 B
C#
Raw Normal View History

2020-12-20 14:36:56 +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.
2020-12-20 15:21:30 +00:00
using osu.Game.Online.Multiplayer;
2020-12-20 14:36:56 +00:00
using osu.Game.Screens.Multi.Lounge;
using osu.Game.Screens.Multi.Lounge.Components;
2020-12-20 15:21:30 +00:00
using osu.Game.Screens.Multi.Match;
2020-12-20 14:36:56 +00:00
namespace osu.Game.Screens.Multi.RealtimeMultiplayer
{
public class RealtimeLoungeSubScreen : LoungeSubScreen
{
protected override FilterControl CreateFilterControl() => new RealtimeFilterControl();
2020-12-20 15:21:30 +00:00
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new RealtimeMatchSubScreen(room);
2020-12-20 14:36:56 +00:00
}
}