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