The jam is running. Build something, or play the entries.
using System; namespace SWB.Shared; public static class RandomExtensions { public static float NextFloat( this Random random, float minValue, float maxValue ) { return random.Float() * (maxValue - minValue) + minValue; } }