<<< | Index | >>> |
|
int card; int suite; int deck[ 52 ]; double bank; int hand[ 6 ]; int score; struct dealer; struct player; //etc... |
shuffle( deck ); deal( deck, hand ); bet( 1.00 ); hit( player ); stand(); //etc... |
<<< | Index | >>> |