mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
29 lines
833 B
C#
29 lines
833 B
C#
// 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.
|
|
|
|
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
|
|
{
|
|
/// <summary>
|
|
/// The colour of the inner circle and outer glows.
|
|
/// </summary>
|
|
public virtual Color4 AccentColour { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether Kiai mode effects are enabled for this circle piece.
|
|
/// </summary>
|
|
public virtual bool KiaiMode { get; set; }
|
|
|
|
public TaikoPiece()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
}
|
|
}
|
|
}
|