// Copyright (c) 2007-2017 ppy Pty Ltd . // 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; using osu.Game.Graphics; using osu.Framework.Allocation; namespace osu.Game.Modes.Taiko.Objects.Drawable { public class DrawableCentreHit : DrawableHit { protected override List HitKeys { get; } = new List(new[] { Key.F, Key.J }); private readonly CirclePiece circlePiece; public DrawableCentreHit(Hit hit) : base(hit) { Add(circlePiece = new CirclePiece { Children = new[] { new CentreHitSymbolPiece() } }); } [BackgroundDependencyLoader] private void load(OsuColour colours) { circlePiece.AccentColour = colours.PinkDarker; } } }