Example #1
0
 public Baccarat()
 {
     pack   = new Pack();
     _PHand = new BaccaratHand();
     _BHand = new BaccaratHand();
 }
Example #2
0
 //constructor for the class, which sets up the hands from the deck
 public Baccarat()
 {
     deck   = new Deck();
     _PHand = new BaccaratHand();
     _BHand = new BaccaratHand();
 }