Example #1
0
        public Board Start(Player[] players)
        {
            _players = players;
            if (players.Length < 2)
            {
                throw new Exception("Insufficient number of players");
            }

            return new Board();
        }
Example #2
0
 public void AddPlayer(Player player)
 {
     _players.Add(player);
 }