mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 18:20:34 +08:00
33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
using osu.Game.Tests.Visual.OnlinePlay;
|
|
using osu.Game.Tests.Visual.Spectator;
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
{
|
|
/// <summary>
|
|
/// Interface that defines the dependencies required for multiplayer test scenes.
|
|
/// </summary>
|
|
public interface IMultiplayerTestSceneDependencies : IOnlinePlayTestSceneDependencies
|
|
{
|
|
/// <summary>
|
|
/// The cached <see cref="Online.Multiplayer.MultiplayerClient"/>.
|
|
/// </summary>
|
|
TestMultiplayerClient MultiplayerClient { get; }
|
|
|
|
/// <summary>
|
|
/// The cached <see cref="IRoomManager"/>.
|
|
/// </summary>
|
|
new TestMultiplayerRoomManager RoomManager { get; }
|
|
|
|
/// <summary>
|
|
/// The cached <see cref="osu.Game.Online.Spectator.SpectatorClient"/>.
|
|
/// </summary>
|
|
TestSpectatorClient SpectatorClient { get; }
|
|
}
|
|
}
|