mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
28 lines
819 B
C#
28 lines
819 B
C#
// 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.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
|
|
{
|
|
/// <summary>
|
|
/// The symbol used for centre hit pieces.
|
|
/// </summary>
|
|
public class CentreHitSymbolPiece : CircularContainer
|
|
{
|
|
public CentreHitSymbolPiece()
|
|
{
|
|
Anchor = Anchor.Centre;
|
|
Origin = Anchor.Centre;
|
|
|
|
Size = new Vector2(CirclePiece.SYMBOL_INNER_SIZE);
|
|
Masking = true;
|
|
|
|
Children = new[] { new Box { RelativeSizeAxes = Axes.Both } };
|
|
}
|
|
}
|
|
}
|