mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
Remove while statement (came from fastrandom...).
This commit is contained in:
parent
06da689ff9
commit
4d9aea6aec
@ -17,7 +17,6 @@ using osu.Game.Rulesets.Objects.Drawables;
|
||||
using osu.Game.Rulesets.Objects.Types;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osu.Game.Rulesets.UI;
|
||||
using osu.Game.Rulesets.Mania.MathUtils;
|
||||
|
||||
namespace osu.Game.Rulesets.Mania.UI
|
||||
{
|
||||
@ -28,11 +27,6 @@ namespace osu.Game.Rulesets.Mania.UI
|
||||
public ManiaHitRenderer(WorkingBeatmap beatmap)
|
||||
: base(beatmap)
|
||||
{
|
||||
FastRandom fr = new FastRandom(1337);
|
||||
while (true)
|
||||
{
|
||||
int value = fr.Next();
|
||||
}
|
||||
}
|
||||
|
||||
protected override Playfield<ManiaHitObject, ManiaJudgement> CreatePlayfield()
|
||||
|
Loading…
Reference in New Issue
Block a user