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