static void Main(string[] args)
        {
            var jogo = new jogoFODA(
                new Jogador1(),
                new Jogador2());

            jogo.IniciarJogo();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            var jogo = new jogoFODA(new Jogador1("Ronadlo"), new Jogador2("Anderson"));

            jogo.IniciarJogo();
        }