Added little window to insert bet amount.

This commit is contained in:
greek 2024-06-02 09:34:59 +01:00
parent 8b3815baac
commit 16df570727
4 changed files with 74 additions and 32 deletions

View file

@ -44,7 +44,7 @@ void PlayerAreaModel::setFocusedPlayer(int n)
focusedPlayer = n;
}
void PlayerAreaModel::bet(BetType b, int n)
void PlayerAreaModel::bet(BetType b, int n, int bet)
{
printf("Received %d-%d for player %s\n", b, n, playerNames[focusedPlayer].toLocal8Bit().data());
printf("Received %d-%d for player %s for %d gil\n", b, n, playerNames[focusedPlayer].toLocal8Bit().data(), bet);
}