mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
41 lines
1.1 KiB
C#
41 lines
1.1 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;
|
||
|
using osuTK.Graphics;
|
||
|
|
||
|
namespace osu.Game.Tournament
|
||
|
{
|
||
|
internal class WarningBox : Container
|
||
|
{
|
||
|
public WarningBox(string text)
|
||
|
{
|
||
|
Masking = true;
|
||
|
CornerRadius = 5;
|
||
|
Depth = float.MinValue;
|
||
|
Anchor = Anchor.Centre;
|
||
|
Origin = Anchor.Centre;
|
||
|
AutoSizeAxes = Axes.Both;
|
||
|
|
||
|
Children = new Drawable[]
|
||
|
{
|
||
|
new Box
|
||
|
{
|
||
|
Colour = Color4.Red,
|
||
|
RelativeSizeAxes = Axes.Both,
|
||
|
},
|
||
|
new TournamentSpriteText
|
||
|
{
|
||
|
Text = text,
|
||
|
Font = OsuFont.Torus.With(weight: FontWeight.Bold),
|
||
|
Colour = Color4.White,
|
||
|
Padding = new MarginPadding(20)
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|