1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 05:47:21 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Objects/Drawables/DrawableCentreHitStrong.cs

28 lines
822 B
C#
Raw Normal View History

2017-03-28 10:51:22 +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
using osu.Framework.Allocation;
using osu.Game.Graphics;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
2017-04-04 12:38:55 +09:00
using OpenTK.Input;
2017-03-28 10:33:23 +09:00
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
2017-03-28 10:33:23 +09:00
{
2017-04-05 10:37:49 +09:00
public class DrawableCentreHitStrong : DrawableHitStrong
2017-03-28 10:33:23 +09:00
{
2017-03-29 15:35:22 +09:00
protected override Key[] HitKeys { get; } = { Key.F, Key.J };
2017-03-28 10:33:23 +09:00
2017-04-05 10:37:49 +09:00
public DrawableCentreHitStrong(Hit hit)
2017-03-28 10:33:23 +09:00
: base(hit)
{
MainPiece.Add(new CentreHitSymbolPiece());
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
MainPiece.AccentColour = colours.PinkDarker;
2017-03-28 10:33:23 +09:00
}
}
}