// 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.
usingMessagePack;
usingosu.Game.Rulesets.Judgements;
usingosu.Game.Rulesets.Objects;
usingosu.Game.Rulesets.Scoring;
namespaceosu.Game.Scoring
{
[MessagePackObject]
publicstructScoringValues
{
/// <summary>
/// The sum of all "basic" <see cref="HitObject"/> scoring values. See: <see cref="HitResultExtensions.IsBasic"/> and <see cref="Judgement.ToNumericResult"/>.
/// </summary>
[Key(0)]
publicdoubleBaseScore;
/// <summary>
/// The sum of all "bonus" <see cref="HitObject"/> scoring values. See: <see cref="HitResultExtensions.IsBonus"/> and <see cref="Judgement.ToNumericResult"/>.
/// </summary>
[Key(1)]
publicdoubleBonusScore;
/// <summary>
/// The highest achieved combo.
/// </summary>
[Key(2)]
publicintMaxCombo;
/// <summary>
/// The count of "basic" <see cref="HitObject"/>s. See: <see cref="HitResultExtensions.IsBasic"/>.