SongProgress in HudOverlay

This commit is contained in:
DrabWeb
2017-03-22 09:27:04 -03:00
parent 333008e26d
commit 818bdd8e88
7 changed files with 30 additions and 13 deletions

View File

@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.MathUtils;
using osu.Framework.Screens.Testing;
using osu.Game.Screens.Play;
@ -34,15 +35,13 @@ namespace osu.Desktop.VisualTests.Tests
private void displayNewValues()
{
var random = new Random();
List<int> newValues = new List<int>();
for (int i = 0; i < 1000; i++)
{
newValues.Add(random.Next(0, 11));
newValues.Add(RNG.Next(0, 11));
}
progress.DisplayValues(newValues);
progress.DisplayValues(newValues.ToArray());
}
}
}