예제 #1
0
 public Baccarat()
 {
     pack   = new Pack();
     _PHand = new BaccaratHand();
     _BHand = new BaccaratHand();
 }
예제 #2
0
파일: Baccarat.cs 프로젝트: OscarBarter/CS
 //constructor for the class, which sets up the hands from the deck
 public Baccarat()
 {
     deck   = new Deck();
     _PHand = new BaccaratHand();
     _BHand = new BaccaratHand();
 }