private void Deal() { int counter = 0; foreach (Player player in players) { counter += 1; Hand hand = new Hand(counter); player.hand = hand; } }
public bool IsEqualTo(Hand other) { return this.value == other.value; }
public bool IsBetterThan(Hand other) { return this.value > other.value; }