mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 12:17:27 +09:00
20 lines
638 B
C#
20 lines
638 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Mania.Judgements;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects
|
|
{
|
|
/// <summary>
|
|
/// A scoring tick of a hold note.
|
|
/// </summary>
|
|
public class HoldNoteTick : ManiaHitObject
|
|
{
|
|
public HoldNoteTickJudgement Judgement { get; private set; }
|
|
|
|
protected override IEnumerable<Judgement> CreateJudgements() => new[] { Judgement = new HoldNoteTickJudgement() };
|
|
}
|
|
}
|