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