osu/osu.Game/Screens/Edit/Timing/ControlPointSettings.cs

21 lines
613 B
C#
Raw Normal View History

2019-10-20 14:42:13 +00:00
// 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 System.Collections.Generic;
2019-10-20 14:42:13 +00:00
using osu.Framework.Graphics;
namespace osu.Game.Screens.Edit.Timing
{
public class ControlPointSettings : EditorRoundedScreenSettings
2019-10-20 14:42:13 +00:00
{
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
{
new GroupSection(),
new TimingSection(),
new DifficultySection(),
new SampleSection(),
new EffectSection(),
};
2019-10-20 14:42:13 +00:00
}
}