Move metronome into own class and rename to avoid conflict with mod sounds

This commit is contained in:
Dean Herbert
2022-05-20 17:12:35 +09:00
parent cf97f4e409
commit 2e21d75b10
7 changed files with 277 additions and 259 deletions

View File

@ -73,7 +73,7 @@ namespace osu.Game.Tests.Visual.Editing
AddStep("click tap button", () =>
{
control.ChildrenOfType<RoundedButton>()
.First(b => b.Text == "Tap to beat")
.Last()
.TriggerClick();
});
@ -82,7 +82,7 @@ namespace osu.Game.Tests.Visual.Editing
AddStep("click reset button", () =>
{
control.ChildrenOfType<RoundedButton>()
.First(b => b.Text == "Reset")
.First()
.TriggerClick();
});
@ -100,7 +100,7 @@ namespace osu.Game.Tests.Visual.Editing
AddStep("click tap button", () =>
{
control.ChildrenOfType<RoundedButton>()
.First(b => b.Text == "Tap to beat")
.Last()
.TriggerClick();
});