mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 16:42:53 +08:00
2cb801317d
There is no case where we use the term "Judgement" without the suffix, so deemed it unnecessary.
35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
|
|
namespace osu.Game.Modes.Judgements
|
|
{
|
|
public abstract class Judgement
|
|
{
|
|
/// <summary>
|
|
/// Whether this judgement is the result of a hit or a miss.
|
|
/// </summary>
|
|
public HitResult? Result;
|
|
|
|
/// <summary>
|
|
/// The offset at which this judgement occurred.
|
|
/// </summary>
|
|
public double TimeOffset;
|
|
|
|
/// <summary>
|
|
/// The combo after this judgement was processed.
|
|
/// </summary>
|
|
public ulong? ComboAtHit;
|
|
|
|
/// <summary>
|
|
/// The string representation for the score achieved.
|
|
/// </summary>
|
|
public abstract string ScoreString { get; }
|
|
|
|
/// <summary>
|
|
/// The string representation for the max score achievable.
|
|
/// </summary>
|
|
public abstract string MaxScoreString { get; }
|
|
}
|
|
} |