mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 02:27:25 +08:00
26 lines
666 B
C#
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()
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|