mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
Use Bindable for setting score
This commit is contained in:
@ -43,8 +43,9 @@ namespace osu.Game.Tests.Visual.SongSelect
|
||||
});
|
||||
|
||||
AddStep(@"Trigger visibility", topScoreContainer.ToggleVisibility);
|
||||
AddStep(@"Add score", () => topScoreContainer.TopScore = scores[0]);
|
||||
AddStep(@"Add another score", () => topScoreContainer.TopScore = scores[1]);
|
||||
AddStep(@"Add score", () => topScoreContainer.TopScore.Value = scores[0]);
|
||||
AddStep(@"Add another score", () => topScoreContainer.TopScore.Value = scores[1]);
|
||||
AddStep(@"Add null score", () => topScoreContainer.TopScore.Value = null);
|
||||
|
||||
scores = new APILegacyUserTopScoreInfo[]
|
||||
{
|
||||
|
Reference in New Issue
Block a user