mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
43 lines
1.2 KiB
C#
43 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.
|
|
|
|
#nullable disable
|
|
|
|
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 partial 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)
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|