1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 02:37:19 +08:00

32 lines
987 B
C#
Raw Normal View History

2017-03-15 21:32:47 +09:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Objects.Drawables;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.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;
public virtual bool AffectsCombo => true;
/// <summary>
/// The string representation for the result achieved.
/// </summary>
public abstract string ResultString { get; }
/// <summary>
/// The string representation for the max result achievable.
/// </summary>
public abstract string MaxResultString { get; }
}
}