1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 22:07:28 +08:00
osu-lazer/osu.Game/Screens/Edit/Timing/ControlPointSettings.cs

21 lines
620 B
C#
Raw Normal View History

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