mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 22:49:08 +01:00
16 lines
412 B
C#
16 lines
412 B
C#
|
using System;
|
||
|
using MonoGame.Extended;
|
||
|
|
||
|
namespace MLEM.Extended.Extensions {
|
||
|
public static class RandomExtensions {
|
||
|
|
||
|
public static int Range(this Random random, Range<int> range) {
|
||
|
return random.Next(range.Min, range.Max);
|
||
|
}
|
||
|
|
||
|
public static float Range(this Random random, Range<float> range) {
|
||
|
return random.NextSingle(range.Min, range.Max);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|