Working on poker logic.

This commit is contained in:
2021-05-31 08:06:43 -07:00
parent 62928b7c69
commit 28e5e86540
26 changed files with 35567 additions and 48 deletions

View File

@ -10,4 +10,11 @@
void pokerBlindsInit(poker_t *poker) {
poker->round = POKER_ROUND_BLINDS;
// Now take blinds
pokerPlayerBet(poker,poker->players+poker->roundSmallBlind, poker->blindSmall);
pokerPlayerBet(poker,poker->players+poker->roundBigBlind, poker->blindBig);
printf("Blinds Taken\n");
pokerDealInit(poker);
}