2021-06-25 12:02:19 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-06-25 12:02:19 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
|
|
using osu.Game.Tests.Visual.OnlinePlay;
|
2021-06-25 16:55:16 +08:00
|
|
|
using osu.Game.Tests.Visual.Spectator;
|
2021-06-25 12:02:19 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
2021-06-25 17:02:53 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Interface that defines the dependencies required for multiplayer test scenes.
|
|
|
|
/// </summary>
|
2021-06-25 19:15:30 +08:00
|
|
|
public interface IMultiplayerTestSceneDependencies : IOnlinePlayTestSceneDependencies
|
2021-06-25 12:02:19 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
2022-02-16 08:43:28 +08:00
|
|
|
/// The cached <see cref="Online.Multiplayer.MultiplayerClient"/>.
|
2021-06-25 12:02:19 +08:00
|
|
|
/// </summary>
|
2022-02-16 08:43:28 +08:00
|
|
|
TestMultiplayerClient MultiplayerClient { get; }
|
2021-06-25 12:02:19 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The cached <see cref="IRoomManager"/>.
|
|
|
|
/// </summary>
|
2021-10-27 15:10:22 +08:00
|
|
|
new TestMultiplayerRoomManager RoomManager { get; }
|
2021-06-25 16:37:02 +08:00
|
|
|
|
2021-06-25 16:55:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The cached <see cref="osu.Game.Online.Spectator.SpectatorClient"/>.
|
|
|
|
/// </summary>
|
|
|
|
TestSpectatorClient SpectatorClient { get; }
|
2021-06-25 12:02:19 +08:00
|
|
|
}
|
|
|
|
}
|