// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osuTK; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Graphics; namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces { /// /// The symbol used for swell pieces. /// public class SwellSymbolPiece : Container { public SwellSymbolPiece() { Anchor = Anchor.Centre; Origin = Anchor.Centre; RelativeSizeAxes = Axes.Both; Size = new Vector2(CirclePiece.SYMBOL_SIZE); Padding = new MarginPadding(CirclePiece.SYMBOL_BORDER); Children = new[] { new SpriteIcon { RelativeSizeAxes = Axes.Both, Icon = FontAwesome.fa_asterisk, Shadow = false } }; } } }