2019-06-18 01:57:57 +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.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Users.Drawables
|
|
|
|
|
{
|
|
|
|
|
public class DrawableFlag : Sprite, IHasTooltip
|
|
|
|
|
{
|
|
|
|
|
private readonly Country country;
|
|
|
|
|
|
|
|
|
|
public string TooltipText => country?.FullName;
|
|
|
|
|
|
2019-06-18 03:33:27 +08:00
|
|
|
|
public DrawableFlag(Country country)
|
|
|
|
|
{
|
|
|
|
|
this.country = country;
|
|
|
|
|
}
|
2019-06-18 01:57:57 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(TextureStore ts)
|
|
|
|
|
{
|
|
|
|
|
if (ts == null)
|
|
|
|
|
throw new ArgumentNullException(nameof(ts));
|
|
|
|
|
|
|
|
|
|
Texture = ts.Get($@"Flags/{country?.FlagName ?? @"__"}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|