1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 01:07:25 +08:00
osu-lazer/osu.Game/Screens/Edit/Setup/DifficultySection.cs
2020-10-06 17:33:50 +09:00

26 lines
666 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.Graphics.Sprites;
namespace osu.Game.Screens.Edit.Setup
{
internal class DifficultySection : SetupSection
{
[BackgroundDependencyLoader]
private void load()
{
Flow.Children = new Drawable[]
{
new OsuSpriteText
{
Text = "Difficulty settings"
},
new LabelledSlider()
};
}
}
}