Ejemplo n.º 1
0
 /// <inheritdoc />
 public float RandomRange(float min, float max)
 {
     return(ImplementingGenerator.RandomRange(min, max));
 }
Ejemplo n.º 2
0
 /// <inheritdoc />
 public bool RandomBool(float chance = 0.5f)
 {
     return(ImplementingGenerator.RandomBool(chance));
 }
Ejemplo n.º 3
0
 /// <inheritdoc />
 public int RandomRange(int max)
 {
     return(ImplementingGenerator.RandomRange(max));
 }