Skip to content

Commit

Permalink
Merge pull request #2316 from CloneWith/feature/setup-sections
Browse files Browse the repository at this point in the history
Add Metadata and Resources sections to the editor's setup screen
  • Loading branch information
andy840119 authored Jan 20, 2025
2 parents c41d65b + ac0fafe commit 2605dae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion osu.Game.Rulesets.Karaoke/KaraokeRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,10 @@ public override StatisticItem[] CreateStatisticsForScore(ScoreInfo score, IBeatm
return statistic.ToArray();
}

public override IEnumerable<SetupSection> CreateEditorSetupSections() => new SetupSection[]
public override IEnumerable<Drawable> CreateEditorSetupSections() => new Drawable[]
{
new MetadataSection(),
new ResourcesSection(),
new KaraokeSingerSection(),
new KaraokeTranslationSection(),
new KaraokeNoteSection(),
Expand Down

0 comments on commit 2605dae

Please sign in to comment.