소스 검색

(BE) update RollStats: set numDice in constructor

tags/v0.2.0
bertieb 3 년 전
부모
커밋
f3447efaf2
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/ts/rollstats.ts

+ 4
- 1
src/ts/rollstats.ts 파일 보기

@@ -26,8 +26,11 @@ export class RollStats {
maxDice = 10;
numDice = 4;

constructor() {
constructor(numDice?:number) {
this.resetCounts();
if (numDice) {
this.numDice = numDice;
}
}

resetCounts(): void {


불러오는 중...
취소
저장