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;
|
2020-03-12 13:06:40 +08:00
|
|
|
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
|
|
|
|
{
|
2020-03-12 13:06:40 +08:00
|
|
|
public partial class DrawableTournamentHeaderLogo : CompositeDrawable
|
2020-03-12 12:29:09 +08:00
|
|
|
{
|
2020-03-12 13:06:40 +08:00
|
|
|
public DrawableTournamentHeaderLogo()
|
2020-03-12 12:29:09 +08:00
|
|
|
{
|
2020-03-12 13:06:40 +08:00
|
|
|
InternalChild = new LogoSprite();
|
|
|
|
|
2020-03-12 13:26:39 +08:00
|
|
|
Height = 82;
|
2020-03-12 13:06:40 +08:00
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
}
|
|
|
|
|
|
|
|
private partial class LogoSprite : Sprite
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(TextureStore textures)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
FillMode = FillMode.Fit;
|
|
|
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
Texture = textures.Get("header-logo");
|
|
|
|
}
|
2020-03-12 12:29:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|