1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:07:21 +08:00

29 lines
833 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
using osu.Game.Graphics;
2018-11-20 16:51:59 +09:00
using osuTK.Graphics;
2018-04-13 18:19:50 +09:00
using osu.Game.Graphics.Containers;
using osu.Framework.Graphics;
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
{
public class TaikoPiece : BeatSyncedContainer, IHasAccentColour
{
/// <summary>
/// The colour of the inner circle and outer glows.
/// </summary>
2019-11-12 17:45:42 +08:00
public virtual Color4 AccentColour { get; set; }
2019-02-28 13:31:40 +09:00
2018-04-13 18:19:50 +09:00
/// <summary>
/// Whether Kiai mode effects are enabled for this circle piece.
/// </summary>
2019-11-12 17:45:42 +08:00
public virtual bool KiaiMode { get; set; }
2018-04-13 18:19:50 +09:00
public TaikoPiece()
{
RelativeSizeAxes = Axes.Both;
}
}
}