2020-12-09 12:17:37 +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.
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-25 13:38:11 +09:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-04 15:34:31 +09:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-12-16 12:31:05 +09:00
|
|
|
/// An interface defining the multiplayer server instance.
|
2020-12-04 15:34:31 +09:00
|
|
|
/// </summary>
|
2020-12-16 12:31:05 +09:00
|
|
|
public interface IMultiplayerServer : IMultiplayerRoomServer, IMultiplayerLoungeServer
|
2020-12-04 15:34:31 +09:00
|
|
|
{
|
|
|
|
}
|
2020-12-08 16:32:45 +09:00
|
|
|
}
|