mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
21 lines
662 B
C#
21 lines
662 B
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 System.Collections.Generic;
|
|
using OpenTK.Input;
|
|
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces;
|
|
|
|
namespace osu.Game.Modes.Taiko.Objects.Drawable
|
|
{
|
|
public class DrawableStrongCentreHit : DrawableStrongHit
|
|
{
|
|
protected override List<Key> HitKeys { get; } = new List<Key>(new[] { Key.F, Key.J });
|
|
|
|
public DrawableStrongCentreHit(Hit hit)
|
|
: base(hit)
|
|
{
|
|
Add(new CentreHitCirclePiece(new StrongCirclePiece()));
|
|
}
|
|
}
|
|
}
|