1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 10:57:27 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Objects/Drawables/Pieces/SwellSymbolPiece.cs

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