Skip to content

Commit

Permalink
Add Metadata and Resources sections to karaoke editor setup screen
Browse files Browse the repository at this point in the history
  • Loading branch information
CloneWith committed Jan 20, 2025
1 parent c41d65b commit bd6e329
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions osu.Game.Rulesets.Karaoke/KaraokeRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,14 @@ public override StatisticItem[] CreateStatisticsForScore(ScoreInfo score, IBeatm
return statistic.ToArray();
}

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

public KaraokeRuleset()
{
Expand Down

0 comments on commit bd6e329

Please sign in to comment.