1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 02:57:24 +08:00
osu-lazer/osu.Game.Tournament/Components/DrawableTournamentHeaderText.cs

41 lines
1.1 KiB
C#
Raw Normal View History

2020-03-12 12:29:09 +08:00
// 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2020-03-12 12:29:09 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2020-03-12 12:29:09 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
namespace osu.Game.Tournament.Components
{
2022-11-24 13:32:20 +08:00
public partial class DrawableTournamentHeaderText : CompositeDrawable
2020-03-12 12:29:09 +08:00
{
public DrawableTournamentHeaderText(bool center = true)
2020-03-12 12:29:09 +08:00
{
InternalChild = new TextSprite
{
Anchor = center ? Anchor.Centre : Anchor.TopLeft,
Origin = center ? Anchor.Centre : Anchor.TopLeft,
};
Height = 22;
RelativeSizeAxes = Axes.X;
}
2022-11-24 13:32:20 +08:00
private partial class TextSprite : Sprite
{
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
RelativeSizeAxes = Axes.Both;
FillMode = FillMode.Fit;
Texture = textures.Get("header-text");
}
2020-03-12 12:29:09 +08:00
}
}
}