mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 12:37:29 +08:00
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
|
{
|
|
public class DrawableTournamentGrouping : CompositeDrawable
|
|
{
|
|
public DrawableTournamentGrouping(TournamentGrouping grouping, bool losers = false)
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
InternalChild = new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
AutoSizeAxes = Axes.Both,
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = grouping.Description.Value.ToUpper(),
|
|
Colour = Color4.Black,
|
|
Origin = Anchor.TopCentre,
|
|
Anchor = Anchor.TopCentre
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Text = ((losers ? "Losers " : "") + grouping.Name).ToUpper(),
|
|
Font = "Exo2.0-Bold",
|
|
Colour = Color4.Black,
|
|
Origin = Anchor.TopCentre,
|
|
Anchor = Anchor.TopCentre
|
|
},
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|