Ejemplo n.º 1
0
        public Game(string[] pArray)
        {
            this.playerName = pArray;
            for (int i = 0; i < this.playerName.Length; i++)
            {
                reg.Add(this.playerName[i], new Player());
            }
            Host host = new Host();

            host.Deal(reg);
            string starter = host.chooseStarter(reg);

            this.starter = starter;
        }