mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:57:24 +08:00
28 lines
908 B
C#
28 lines
908 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
namespace osu.Game.Screens.Edit.Verify
|
|
{
|
|
internal class InterpretationSection : EditorRoundedScreenSettingsSection
|
|
{
|
|
protected override string HeaderText => "Interpretation";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(VerifyScreen verify)
|
|
{
|
|
Flow.Add(new SettingsEnumDropdown<DifficultyRating>
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
TooltipText = "Affects checks that depend on difficulty level",
|
|
Current = verify.InterpretedDifficulty.GetBoundCopy()
|
|
});
|
|
}
|
|
}
|
|
}
|