mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 12:27:25 +08:00
28 lines
932 B
C#
28 lines
932 B
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 System;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Menus
|
|
{
|
|
public class DifficultyMenuItem : StatefulMenuItem<bool>
|
|
{
|
|
public BeatmapInfo Beatmap { get; }
|
|
|
|
public DifficultyMenuItem(BeatmapInfo beatmapInfo, bool selected, Action<BeatmapInfo> difficultyChangeFunc)
|
|
: base(beatmapInfo.Version ?? "(unnamed)", null)
|
|
{
|
|
Beatmap = beatmapInfo;
|
|
State.Value = selected;
|
|
|
|
if (!selected)
|
|
Action.Value = () => difficultyChangeFunc.Invoke(beatmapInfo);
|
|
}
|
|
|
|
public override IconUsage? GetIconForState(bool state) => state ? (IconUsage?)FontAwesome.Solid.Check : null;
|
|
}
|
|
}
|