osu/osu.Game.Rulesets.Taiko/Objects/Drawables/Pieces/CentreHitSymbolPiece.cs

28 lines
819 B
C#
Raw Normal View History

// 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;
2017-04-04 03:38:55 +00:00
using osu.Framework.Graphics.Containers;
using OpenTK;
using osu.Framework.Graphics.Shapes;
2017-04-18 07:05:58 +00:00
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;
2017-08-03 04:23:12 +00:00
Size = new Vector2(CirclePiece.SYMBOL_INNER_SIZE);
Masking = true;
2017-08-03 04:23:12 +00:00
Children = new[] { new Box { RelativeSizeAxes = Axes.Both } };
}
}
}