mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 10:17:32 +08:00
27 lines
819 B
C#
27 lines
819 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.
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
{
|
|
public class DrawableSpinnerTick : DrawableOsuHitObject
|
|
{
|
|
public override bool DisplayResult => false;
|
|
|
|
public DrawableSpinnerTick(SpinnerTick spinnerTick)
|
|
: base(spinnerTick)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Apply a judgement result.
|
|
/// </summary>
|
|
/// <param name="result">Whether to apply a <see cref="HitResult.Great"/> result, <see cref="HitResult.Miss"/> otherwise.</param>
|
|
internal void TriggerResult(HitResult result)
|
|
{
|
|
ApplyResult(r => r.Type = result);
|
|
}
|
|
}
|
|
}
|