UNPKG

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>

20 lines 455 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class RandomNumber { constructor(rng, value) { this.rng = rng; this.value = value; this.capturedRNG = rng.capture(); } get() { return this.value; } getRNG() { return this.rng; } getCapturedRNG() { return this.capturedRNG; } } exports.default = RandomNumber; //# sourceMappingURL=RandomNumber.js.map