feat: add double down feature to blackjack game

This commit is contained in:
Jan-Marlon Leibl 2025-03-27 15:40:26 +01:00
commit d2b22b561d
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
7 changed files with 190 additions and 61 deletions

View file

@ -11,6 +11,7 @@
[gameState]="gameState()"
(hit)="onHit()"
(stand)="onStand()"
(doubleDown)="onDoubleDown()"
(leave)="leaveGame()"
></app-game-controls>
}
@ -32,4 +33,5 @@
[gameState]="gameState()"
[amount]="currentBet()"
[show]="showGameResult()"
(close)="onCloseGameResult()"
></app-game-result>