mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 13:52:54 +08:00
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osu.Framework.Extensions;
|
|
using osu.Game.Modes;
|
|
|
|
namespace osu.Game.Screens.Select.Leaderboards
|
|
{
|
|
public class DrawableRank : Container
|
|
{
|
|
private Sprite sprite;
|
|
private TextureStore textures;
|
|
|
|
private ScoreRank rank;
|
|
public ScoreRank Rank
|
|
{
|
|
get { return rank; }
|
|
set
|
|
{
|
|
if (value == rank) return;
|
|
rank = value;
|
|
sprite.Texture = textures.Get($@"Badges/ScoreRanks/{rank.GetDescription()}");
|
|
}
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(TextureStore ts)
|
|
{
|
|
textures = ts;
|
|
sprite.Texture = textures.Get($@"Badges/ScoreRanks/{rank.GetDescription()}");
|
|
}
|
|
|
|
public DrawableRank(ScoreRank rank)
|
|
{
|
|
this.rank = rank;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
sprite = new Sprite
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|