2025-08-11 19:36:09 +02:00

9 lines
196 B
C#

namespace ImGuiNET.SampleProgram.XNA;
public static class RandomExtension
{
public static T NextItem<T>(this Random rng, T[] array)
{
return array[rng.Next(array.Length)];
}
}