1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 05:52:36 +08:00
Files
osu-lazer/osu.Game/Screens/Edit/Verify/IssueSettings.cs
T
2025-08-01 21:41:21 +01:00

19 lines
558 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 System.Collections.Generic;
using osu.Framework.Graphics;
namespace osu.Game.Screens.Edit.Verify
{
public partial class IssueSettings : EditorRoundedScreenSettings
{
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
{
new ScopeSection(),
new InterpretationSection(),
new VisibilitySection()
};
}
}