2017-03-29 13:52:14 +08:00
|
|
|
|
// 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 11:38:55 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-03-29 13:52:14 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
|
2017-03-29 13:52:14 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The symbol used for swell pieces.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SwellSymbolPiece : TextAwesome
|
|
|
|
|
{
|
|
|
|
|
public SwellSymbolPiece()
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
2017-03-31 10:19:33 +08:00
|
|
|
|
UseFullGlyphHeight = true;
|
2017-03-29 13:52:14 +08:00
|
|
|
|
TextSize = CirclePiece.SYMBOL_INNER_SIZE;
|
|
|
|
|
Icon = FontAwesome.fa_asterisk;
|
|
|
|
|
Shadow = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|