randiny
Version:
<h1 style="margin-bottom: 0">Randiny</h1> <h2 style="font-size: 14px; margin-top: 0">A pseudo random number generator, capable of generating random numbers, and noise maps.</h2>
11 lines • 323 B
TypeScript
import RNG, { RNGCapture } from "./RNG";
export default class RandomNumber {
private readonly rng;
private readonly value;
private readonly capturedRNG;
constructor(rng: RNG, value: number);
get(): number;
getRNG(): RNG;
getCapturedRNG(): RNGCapture;
}
//# sourceMappingURL=RandomNumber.d.ts.map