feat: initial commit of Railtrack Pro prototype with complete test suite
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
import { unsafeGenerateN } from './UnsafeGenerateN.js';
|
||||
export function generateN(rng, num) {
|
||||
var nextRng = rng.clone();
|
||||
var out = unsafeGenerateN(nextRng, num);
|
||||
return [out, nextRng];
|
||||
}
|
||||
Reference in New Issue
Block a user