mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 20:07:29 +08:00
37 lines
1.1 KiB
C#
37 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics.Cursor;
|
|
using osu.Game.Database;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
{
|
|
public class ModPresetPanel : ModSelectPanel, IHasCustomTooltip<ModPreset>
|
|
{
|
|
public readonly Live<ModPreset> Preset;
|
|
|
|
public override BindableBool Active { get; } = new BindableBool();
|
|
|
|
public ModPresetPanel(Live<ModPreset> preset)
|
|
{
|
|
Preset = preset;
|
|
|
|
Title = preset.Value.Name;
|
|
Description = preset.Value.Description;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
AccentColour = colours.Orange1;
|
|
}
|
|
|
|
public ModPreset TooltipContent => Preset.Value;
|
|
public ITooltip<ModPreset> GetCustomTooltip() => new ModPresetTooltip(ColourProvider);
|
|
}
|
|
}
|