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.
|
|
|
|
|
2019-10-20 23:06:38 +08:00
|
|
|
using System.Collections.Generic;
|
2019-10-20 22:42:13 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Timing
|
|
|
|
{
|
2021-05-12 15:53:49 +08:00
|
|
|
public class ControlPointSettings : EditorRoundedScreenSettings
|
2019-10-20 22:42:13 +08:00
|
|
|
{
|
2021-05-12 07:21:38 +08:00
|
|
|
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
|
2019-10-20 23:06:38 +08:00
|
|
|
{
|
2020-10-02 14:25:48 +08:00
|
|
|
new GroupSection(),
|
2019-10-20 23:06:38 +08:00
|
|
|
new TimingSection(),
|
|
|
|
new EffectSection(),
|
|
|
|
};
|
2019-10-20 22:42:13 +08:00
|
|
|
}
|
|
|
|
}
|