커맨드 보정

This commit is contained in:
2026-01-08 13:59:59 +00:00
parent f62bbb7927
commit 3e649f75fa
15 changed files with 2457 additions and 0 deletions
+4
View File
@@ -200,6 +200,10 @@ export class TestGameRunner {
int: (min: number, max: number) => Math.floor(Math.random() * (max - min)) + min,
nextInt: (min: number, max: number) => Math.floor(Math.random() * (max - min)) + min,
next: () => Math.random(),
nextBool: () => Math.random() < 0.5,
nextRange: (min: number, max: number) => Math.random() * (max - min) + min,
nextRangeInt: (min: number, max: number) => Math.floor(Math.random() * (max - min)) + min,
nextFloat: () => Math.random(),
} as any,
year: this.currentDate.getFullYear(),