isaacscript-common 1.2.204 → 1.2.205
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/functions/rng.d.ts
CHANGED
|
@@ -42,4 +42,6 @@ export declare function newRNG(seed?: Seed): RNG;
|
|
|
42
42
|
* RNG objects.
|
|
43
43
|
*/
|
|
44
44
|
export declare function nextSeed(seed: Seed): Seed;
|
|
45
|
+
/** Helper function to set a seed to an RNG object using Blade's recommended shift index. */
|
|
46
|
+
export declare function setSeed(rng: RNG, seed: Seed): void;
|
|
45
47
|
export {};
|
package/dist/functions/rng.lua
CHANGED