// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Threading.Tasks; namespace osu.Game.Online.Multiplayer { /// /// Interface for an out-of-room multiplayer server. /// public interface IMultiplayerLoungeServer { /// /// Request to join a multiplayer room. /// /// The databased room ID. /// If the user is already in the requested (or another) room. Task JoinRoom(long roomId); } }