Payout button stub.

This commit is contained in:
greek 2024-06-07 18:03:22 +01:00
parent 91ea5543a2
commit f72c5b781f
3 changed files with 36 additions and 1 deletions

View file

@ -76,7 +76,12 @@ void PlayerAreaModel::removeBet(BetType b, int n)
}
}
void PlayerAreaModel::cancelBet(BetType b, int n) {
void PlayerAreaModel::cancelBet(BetType b, int n)
{
emit betCanceled(b, n);
}
void PlayerAreaModel::payout()
{
printf("payout\n");
}