// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Game.Database; using osu.Game.Online.Rooms; using osu.Game.Screens.OnlinePlay; namespace osu.Game.Tests.Visual.OnlinePlay { /// /// Interface that defines the dependencies required for online play test scenes. /// public interface IOnlinePlayTestSceneDependencies { /// /// The cached . /// Bindable? SelectedRoom { get; } /// /// The cached /// IRoomManager? RoomManager { get; } /// /// The cached . /// OngoingOperationTracker? OngoingOperationTracker { get; } /// /// The cached . /// OnlinePlayBeatmapAvailabilityTracker? AvailabilityTracker { get; } /// /// The cached . /// TestUserLookupCache? UserLookupCache { get; } /// /// The cached . /// BeatmapLookupCache? BeatmapLookupCache { get; } } }