@awayjs/stage
Version:
Stage for AwayJS
12 lines • 370 B
TypeScript
/**
* Implement LehmerRng for noise
* Port from Ruffle/Rust
* @see https://github.com/ruffle-rs/ruffle/blob/bb71b61c9ade6c3f185d7f0cc878423402dc4a7f/core/src/bitmap/bitmap_data.rs#L19
*/
export declare class LehmerRng {
private _x;
constructor(seed: ui32);
gen(): ui32;
genRange(start: ui32, end: ui32): ui8;
}
//# sourceMappingURL=LehmerRng.d.ts.map