Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var jogo = new jogoFODA(
                new Jogador1(),
                new Jogador2());

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

            jogo.IniciarJogo();
        }