트리거 시스템 및 랜덤 생성기 인터페이스 추가: 기본 구조 정의

This commit is contained in:
2025-12-27 04:36:38 +00:00
parent b42d87a51b
commit 206aa64c64
6 changed files with 343 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
export interface RandomGenerator {
nextFloat(): number;
nextBool(probability: number): boolean;
nextInt(minInclusive: number, maxExclusive: number): number;
}