Example #1
0
 public GoFish(params AbstractFishPlayer[] players)
 {
     //TODO: Validate the list of polayers, that there are from 2 to 5 players
     this.Players = players;
     Deck = new DeckOfCards();
 }