mirror of
https://github.com/osukey/osukey.git
synced 2025-05-05 13:47:19 +09:00
18 lines
488 B
C#
18 lines
488 B
C#
using System.Collections.Generic;
|
|
using OpenTK.Input;
|
|
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces;
|
|
|
|
namespace osu.Game.Modes.Taiko.Objects.Drawable
|
|
{
|
|
public class DrawableCentreHit : DrawableHit
|
|
{
|
|
protected override List<Key> HitKeys { get; } = new List<Key>(new Key[] { Key.F, Key.J });
|
|
|
|
public DrawableCentreHit(Hit hit)
|
|
: base(hit)
|
|
{
|
|
Add(new CentreHitCirclePiece(new CirclePiece()));
|
|
}
|
|
}
|
|
}
|