mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||
|
// See the LICENCE file in the repository root for full licence text.
|
||
|
|
||
|
using osu.Framework.Graphics;
|
||
|
using osu.Framework.Graphics.Containers;
|
||
|
using osu.Framework.Graphics.Shapes;
|
||
|
using osu.Game.Graphics;
|
||
|
|
||
|
namespace osu.Game.Tournament.Components
|
||
|
{
|
||
|
public class TournamentSpriteTextWithBackground : CompositeDrawable
|
||
|
{
|
||
|
protected readonly TournamentSpriteText Text;
|
||
|
protected readonly Box Background;
|
||
|
|
||
|
public TournamentSpriteTextWithBackground(string text = "")
|
||
|
{
|
||
|
AutoSizeAxes = Axes.Both;
|
||
|
|
||
|
InternalChildren = new Drawable[]
|
||
|
{
|
||
|
Background = new Box
|
||
|
{
|
||
|
Colour = TournamentGame.ELEMENT_BACKGROUND_COLOUR,
|
||
|
RelativeSizeAxes = Axes.Both,
|
||
|
},
|
||
|
Text = new TournamentSpriteText
|
||
|
{
|
||
|
Colour = TournamentGame.ELEMENT_FOREGROUND_COLOUR,
|
||
|
Font = OsuFont.Torus.With(weight: FontWeight.SemiBold, size: 50),
|
||
|
Padding = new MarginPadding { Left = 10, Right = 20 },
|
||
|
Text = text
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|