コード例 #1
0
ファイル: Player.cs プロジェクト: tekavec/WarGameKata
 public void RevealsTopCardIn(Round round)
 {
     if (_Cards.Count > 0)
     {
         round.PutCardOnTable(this, _Cards.Pop());
     }
 }