1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-13 03:17:20 +08:00

28 lines
807 B
C#
Raw Normal View History

2017-03-28 11:18:12 +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-04 12:38:55 +09:00
using osu.Game.Modes.Taiko.Objects.Drawables.Pieces;
2017-03-28 11:18:12 +09:00
using OpenTK.Input;
2017-04-04 12:38:55 +09:00
namespace osu.Game.Modes.Taiko.Objects.Drawables
2017-03-28 11:18:12 +09:00
{
2017-04-05 10:37:49 +09:00
public class DrawableRimHitStrong : DrawableHitStrong
2017-03-28 11:18:12 +09:00
{
2017-03-29 15:35:22 +09:00
protected override Key[] HitKeys { get; } = { Key.D, Key.K };
2017-03-28 11:18:12 +09:00
2017-04-05 10:37:49 +09:00
public DrawableRimHitStrong(Hit hit)
2017-03-28 11:18:12 +09:00
: base(hit)
{
MainPiece.Add(new RimHitSymbolPiece());
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
MainPiece.AccentColour = colours.BlueDarker;
2017-03-28 11:18:12 +09:00
}
}
}