1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 18:07:25 +08:00
osu-lazer/osu.Game/Screens/Multi/RealtimeMultiplayer/RealtimeLoungeSubScreen.cs

35 lines
1.1 KiB
C#
Raw Normal View History

2020-12-20 22:36:56 +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.Framework.Allocation;
using osu.Framework.Logging;
2020-12-20 23:21:30 +08:00
using osu.Game.Online.Multiplayer;
using osu.Game.Online.RealtimeMultiplayer;
2020-12-20 22:36:56 +08:00
using osu.Game.Screens.Multi.Lounge;
using osu.Game.Screens.Multi.Lounge.Components;
2020-12-20 23:21:30 +08:00
using osu.Game.Screens.Multi.Match;
2020-12-20 22:36:56 +08:00
namespace osu.Game.Screens.Multi.RealtimeMultiplayer
{
public class RealtimeLoungeSubScreen : LoungeSubScreen
{
protected override FilterControl CreateFilterControl() => new RealtimeFilterControl();
2020-12-20 23:21:30 +08:00
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new RealtimeMatchSubScreen(room);
[Resolved]
private StatefulMultiplayerClient client { get; set; }
public override void Open(Room room)
{
if (!client.IsConnected.Value)
{
Logger.Log("Not currently connected to the multiplayer server.", LoggingTarget.Runtime, LogLevel.Important);
return;
}
base.Open(room);
}
2020-12-20 22:36:56 +08:00
}
}