public void ChangePack()
 {
     pack.cards = (int[])BJSystem.GetCardDeck(pack.packType);
 }
Beispiel #2
0
 public Pack(PackType packType)
 {
     this.packType = packType;
     cards         = (int[])BJSystem.GetCardDeck(packType);
 }