Drop two helpers nothing calls

This commit is contained in:
2026-09-08 15:24:01 -07:00
parent 5f8ad511f0
commit 08b2cc5391
3 changed files with 0 additions and 9 deletions
-3
View File
@@ -15,7 +15,4 @@ export function makeRng(seed: number) {
export type Rng = ReturnType<typeof makeRng>
export const randInt = (rng: Rng, min: number, max: number) =>
min + Math.floor(rng() * (max - min + 1))
export const chance = (rng: Rng, p: number) => rng() < p