Esempio n. 1
0
        private void Deal()
        {
            int counter = 0;
            foreach (Player player in players)
            { counter += 1;

                Hand hand = new Hand(counter);
                player.hand = hand;
            }
        }
Esempio n. 2
0
 public bool IsEqualTo(Hand other)
 {
     return this.value == other.value;
 }
Esempio n. 3
0
 public bool IsBetterThan(Hand other)
 {
     return this.value > other.value;
 }