// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Graphics; using osuTK.Graphics; using osu.Game.Graphics.Containers; using osu.Framework.Graphics; namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces { public class TaikoPiece : BeatSyncedContainer, IHasAccentColour { private Color4 accentColour; /// /// The colour of the inner circle and outer glows. /// public virtual Color4 AccentColour { get { return accentColour; } set { accentColour = value; } } private bool kiaiMode; /// /// Whether Kiai mode effects are enabled for this circle piece. /// public virtual bool KiaiMode { get { return kiaiMode; } set { kiaiMode = value; } } public TaikoPiece() { RelativeSizeAxes = Axes.Both; } } }