CameraBuddy.Spectate.Core.Random.NextRange C# (CSharp) Method

NextRange() public static method

public static NextRange ( this value, int range ) : int
value this
range int
return int
        public static int NextRange(this int value, int range)
        {
            return Next(value - range, value + range);
        }
        public static float NextFloatRange(this float value, float range)