2021-04-07 12:38:43 +00: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 07:38:04 +00:00
|
|
|
public class IssueSettings : RoundedContentEditorScreenSettings
|
2021-04-07 12:38:43 +00:00
|
|
|
{
|
2021-05-11 23:22:32 +00:00
|
|
|
private readonly IssueList issueList;
|
2021-04-07 12:38:43 +00:00
|
|
|
|
2021-05-11 23:22:32 +00:00
|
|
|
public IssueSettings(IssueList issueList)
|
|
|
|
{
|
|
|
|
this.issueList = issueList;
|
2021-04-07 12:38:43 +00:00
|
|
|
}
|
|
|
|
|
2021-05-11 23:21:38 +00:00
|
|
|
protected override IReadOnlyList<Drawable> CreateSections() => new Drawable[]
|
2021-04-07 12:38:43 +00:00
|
|
|
{
|
2021-05-11 23:32:18 +00:00
|
|
|
new InterpretationSection(issueList),
|
2021-05-11 23:27:21 +00:00
|
|
|
new VisibilitySection(issueList)
|
2021-04-07 12:38:43 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|