mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 17:07:35 +09:00
36 lines
1016 B
C#
36 lines
1016 B
C#
// 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
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Online.Spectator
|
|
{
|
|
[Serializable]
|
|
public class FrameHeader
|
|
{
|
|
public int Combo { get; set; }
|
|
|
|
public int MaxCombo { get; set; }
|
|
|
|
public Dictionary<HitResult, int> Statistics = new Dictionary<HitResult, int>();
|
|
|
|
/// <summary>
|
|
/// Construct header summary information from a point-in-time reference to a score which is actively being played.
|
|
/// </summary>
|
|
/// <param name="score">The score for reference.</param>
|
|
public FrameHeader(ScoreInfo score)
|
|
{
|
|
Combo = score.Combo;
|
|
MaxCombo = score.MaxCombo;
|
|
|
|
foreach (var kvp in score.Statistics)
|
|
Statistics[kvp.Key] = kvp.Value;
|
|
}
|
|
}
|
|
}
|