1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00

32 lines
892 B
C#
Raw Normal View History

// 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 JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Game.Tournament.Models;
namespace osu.Game.Tournament.Components
{
2022-11-24 14:32:20 +09:00
public partial class DrawableTeamTitle : TournamentSpriteTextWithBackground
{
2023-07-25 20:50:55 +09:00
private readonly TournamentTeam? team;
[UsedImplicitly]
2023-07-25 20:50:55 +09:00
private Bindable<string>? acronym;
2023-07-25 20:50:55 +09:00
public DrawableTeamTitle(TournamentTeam? team)
{
this.team = team;
}
[BackgroundDependencyLoader]
2022-01-15 01:06:39 +01:00
private void load()
{
if (team == null) return;
2022-06-24 21:25:23 +09:00
(acronym = team.Acronym.GetBoundCopy()).BindValueChanged(_ => Text.Text = team?.FullName.Value ?? string.Empty, true);
}
}
}