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.
|
|
|
|
|
2021-06-25 16:37:02 +08:00
|
|
|
using osu.Game.Database;
|
2021-06-25 12:02:19 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
|
|
using osu.Game.Tests.Visual.OnlinePlay;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
2021-06-25 16:37:02 +08:00
|
|
|
public interface IMultiplayerTestDependencies : IOnlinePlayTestDependencies
|
2021-06-25 12:02:19 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The cached <see cref="MultiplayerClient"/>.
|
|
|
|
/// </summary>
|
|
|
|
TestMultiplayerClient Client { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The cached <see cref="IRoomManager"/>.
|
|
|
|
/// </summary>
|
|
|
|
new TestMultiplayerRoomManager RoomManager { get; }
|
2021-06-25 16:37:02 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The cached <see cref="UserLookupCache"/>.
|
|
|
|
/// </summary>
|
|
|
|
TestUserLookupCache LookupCache { get; }
|
2021-06-25 12:02:19 +08:00
|
|
|
}
|
|
|
|
}
|