mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
// 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 Humanizer;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
/// <summary>
|
|
/// A default implementation of an icon used to represent beatmap statistics.
|
|
/// </summary>
|
|
public class BeatmapStatisticIcon : Sprite
|
|
{
|
|
private readonly BeatmapStatisticsIconType iconType;
|
|
|
|
public BeatmapStatisticIcon(BeatmapStatisticsIconType iconType)
|
|
{
|
|
this.iconType = iconType;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(TextureStore textures)
|
|
{
|
|
Texture = textures.Get($"Icons/BeatmapDetails/{iconType.ToString().Kebaberize()}");
|
|
}
|
|
}
|
|
|
|
public enum BeatmapStatisticsIconType
|
|
{
|
|
Accuracy,
|
|
ApproachRate,
|
|
Bpm,
|
|
Circles,
|
|
HpDrain,
|
|
Length,
|
|
OverallDifficulty,
|
|
Size,
|
|
Sliders,
|
|
Spinners,
|
|
}
|
|
}
|