1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 16:12:54 +08:00

Make FastRandom public

This commit is contained in:
ekrctb 2018-05-25 16:49:41 +09:00
parent ca2c209701
commit 8c8e87ed7a

View File

@ -8,7 +8,7 @@ namespace osu.Game.Rulesets.Catch.MathUtils
/// <summary>
/// A PRNG specified in http://heliosphan.org/fastrandom.html.
/// </summary>
internal class FastRandom
public class FastRandom
{
private const double int_to_real = 1.0 / (int.MaxValue + 1.0);
private const uint int_mask = 0x7FFFFFFF;