2021-04-07 20:38:43 +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;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Verify
|
|
|
|
{
|
2021-05-12 15:53:49 +08:00
|
|
|
public class IssueSettings : EditorRoundedScreenSettings
|
2021-04-07 20:38:43 +08:00
|
|
|
{
|
2021-05-12 07:21:38 +08:00
|
|
|
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
|
2021-04-07 20:38:43 +08:00
|
|
|
{
|
2021-05-12 15:53:49 +08:00
|
|
|
new InterpretationSection(),
|
|
|
|
new VisibilitySection()
|
2021-04-07 20:38:43 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|