// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable enable namespace osu.Game.Beatmaps { /// /// Beatmap info retrieved for previewing locally. /// public interface IBeatmapOnlineInfo { /// /// The max combo of this beatmap. /// int? MaxCombo { get; } /// /// The amount of circles in this beatmap. /// public int CircleCount { get; } /// /// The amount of sliders in this beatmap. /// public int SliderCount { get; } /// /// The amount of plays this beatmap has. /// public int PlayCount { get; } /// /// The amount of passes this beatmap has. /// public int PassCount { get; } APIFailTimes? FailTimes { get; } } }