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

37 lines
1.0 KiB
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
2017-08-03 15:57:45 +09:30
using OpenTK;
using osu.Framework.Graphics;
2017-08-03 15:57:45 +09:30
using osu.Framework.Graphics.Containers;
2017-04-04 12:38:55 +09:00
using osu.Game.Graphics;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
{
/// <summary>
/// The symbol used for swell pieces.
/// </summary>
2017-08-03 15:57:45 +09:30
public class SwellSymbolPiece : Container
{
public SwellSymbolPiece()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2017-08-03 13:53:12 +09:30
2017-08-03 15:57:45 +09:30
RelativeSizeAxes = Axes.Both;
Size = new Vector2(CirclePiece.SYMBOL_SIZE);
Padding = new MarginPadding(CirclePiece.SYMBOL_BORDER);
Children = new[]
{
new SpriteIcon
2017-08-03 15:57:45 +09:30
{
RelativeSizeAxes = Axes.Both,
2017-08-03 15:57:45 +09:30
Icon = FontAwesome.fa_asterisk,
Shadow = false
}
};
}
}
}