1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Make difficulty sliders private set

This commit is contained in:
Bartłomiej Dach 2023-07-22 15:55:20 +02:00
parent fd2bdc10c7
commit f985bdc10f
No known key found for this signature in database

View File

@ -15,12 +15,12 @@ namespace osu.Game.Screens.Edit.Setup
{
public partial class DifficultySection : SetupSection
{
protected LabelledSliderBar<float> CircleSizeSlider = null!;
protected LabelledSliderBar<float> HealthDrainSlider = null!;
protected LabelledSliderBar<float> ApproachRateSlider = null!;
protected LabelledSliderBar<float> OverallDifficultySlider = null!;
protected LabelledSliderBar<double> BaseVelocitySlider = null!;
protected LabelledSliderBar<double> TickRateSlider = null!;
protected LabelledSliderBar<float> CircleSizeSlider { get; private set; } = null!;
protected LabelledSliderBar<float> HealthDrainSlider { get; private set; } = null!;
protected LabelledSliderBar<float> ApproachRateSlider { get; private set; } = null!;
protected LabelledSliderBar<float> OverallDifficultySlider { get; private set; } = null!;
protected LabelledSliderBar<double> BaseVelocitySlider { get; private set; } = null!;
protected LabelledSliderBar<double> TickRateSlider { get; private set; } = null!;
public override LocalisableString Title => EditorSetupStrings.DifficultyHeader;