1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 15:57:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
526 B
C#
Raw Normal View History

2021-04-07 14:38:43 +02: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
{
public partial class IssueSettings : EditorRoundedScreenSettings
2021-04-07 14:38:43 +02:00
{
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
2021-04-07 14:38:43 +02:00
{
new InterpretationSection(),
new VisibilitySection()
2021-04-07 14:38:43 +02:00
};
}
}