/// <summary> /// Returns a random integer over the range of valid integers based /// on the provided X and Y position, and the specified modifier. /// </summary> public int GetRandomInt(long x, long y, long z, long modifier = 0) { return(AlgorithmUtility.GetRandomInt(this.Seed, x, y, z, modifier)); }