refactor(blackjack): rename event emitters for clarity
All checks were successful
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / prettier (pull_request) Successful in 37s
CI / eslint (pull_request) Successful in 39s
CI / test-build (pull_request) Successful in 46s

This commit is contained in:
Jan-Marlon Leibl 2025-03-26 13:34:54 +01:00
parent 5e5fe603f9
commit 03ce527087
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
3 changed files with 14 additions and 16 deletions

View file

@ -6,9 +6,9 @@
<app-dealer-hand [cards]="dealerCards"></app-dealer-hand>
<app-player-hand [cards]="playerCards"></app-player-hand>
<app-game-controls
(onHit)="onHit()"
(onStand)="onStand()"
(onLeave)="leaveGame()"
(hit)="onHit()"
(stand)="onStand()"
(leave)="leaveGame()"
></app-game-controls>
</div>
@ -16,7 +16,7 @@
<app-game-info
[balance]="balance()"
[currentBet]="currentBet"
(onNewGameClick)="onNewGame()"
(newGame)="onNewGame()"
></app-game-info>
</div>
</div>