Move online metrics out of BeatmapSetInfo model

This commit is contained in:
Dean Herbert
2021-10-25 14:44:49 +09:00
parent 37ec4db017
commit 045dd94a6e
13 changed files with 86 additions and 73 deletions

View File

@ -0,0 +1,17 @@
// 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.
#nullable enable
namespace osu.Game.Beatmaps
{
/// <summary>
/// Beatmap info retrieved for previewing locally.
/// </summary>
public interface IBeatmapOnlineInfo
{
int? MaxCombo { get; }
BeatmapMetrics? Metrics { get; }
}
}