예제 #1
0
파일: UnoGame.cs 프로젝트: David176/SWT
 public UnoGame(IDeck deck)
 {
     _tableDeck = new TableDeck();
     _deck = deck;
     _cardRules = _deck.GetCardRules();
     _playersInGame = new List<Player>();
     _currentPlayersTurn = 0;
 }