コード例 #1
0
ファイル: GoFish.cs プロジェクト: rjlgithub/CCTB-245
 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();
 }