Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Tests/Visual/OnlinePlay/IOnlinePlayTestSceneDependencies.cs
5261 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using osu.Game.Database;
using osu.Game.Screens.OnlinePlay;

namespace osu.Game.Tests.Visual.OnlinePlay
{
    /// <summary>
    /// Interface that defines the dependencies required for online play test scenes.
    /// </summary>
    public interface IOnlinePlayTestSceneDependencies
    {
        /// <summary>
        /// The cached <see cref="OngoingOperationTracker"/>.
        /// </summary>
        OngoingOperationTracker OngoingOperationTracker { get; }

        /// <summary>
        /// The cached <see cref="UserLookupCache"/>.
        /// </summary>
        TestUserLookupCache UserLookupCache { get; }

        /// <summary>
        /// The cached <see cref="BeatmapLookupCache"/>.
        /// </summary>
        BeatmapLookupCache BeatmapLookupCache { get; }
    }
}