Explorar el Código

(BE) update RollStats: set numDice in constructor

tags/v0.2.0
bertieb hace 3 años
padre
commit
f3447efaf2
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/ts/rollstats.ts

+ 4
- 1
src/ts/rollstats.ts Ver fichero

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

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

resetCounts(): void {


Cargando…
Cancelar
Guardar