static void Main(string[] args) { // Console.WriteLine("Hello World!"); var jogo = new JogoFODA(new Jogador2(), new Jogador1("Ronaldo")); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA(new Jogador1(), new Jogador2()); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogoFODA = new JogoFODA(new Jogador("Ronaldo"), new Jogador("Adriano")); jogoFODA.IniciarJogo(); }
static void Main(string[] args) { Jogador jogador = new Jogador("Thun An", "Meia-Atacante"); var jogo = new JogoFODA(jogador); jogo.IniciarJogo(); jogo.Passe(); }
static void Main(string[] args) { var jogo = new JogoFODA( new Jogador1("Ronaldo"), new Jogador3()); jogo.IniciarJogo(); }
static void Main(string[] args) { Console.WriteLine("Hello World!" + Environment.NewLine); var jogo = new JogoFODA(new Jogador2(), new Jogador3()); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA( new Jogador("Gilberto"), new JogadorNoob() ); jogo.IniciarJogo(); }
static void Main(string[] args) { iJogador jogador1 = new Jogador("Lucas"); iJogador jogador2 = new Jogador("Carlos"); JogoFODA jogo = new JogoFODA(jogador1, jogador2); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA( new Jogador1("Roberto Carlos"), new Jogador2(), new Jogador3()); jogo.IniciarJogo(); }
static void Main(string[] args) { JogoFODA game = new JogoFODA( new Jogador1("Rafael"), new Jogador2("Deadpool"), new Jogador3()); game.IniciarJogo(); }
static void Main(string[] args) { IJogador jogador1 = new Jogador1("Maria"); IJogador jogador2 = new Jogador2("Pedro"); var jogo = new JogoFODA(jogador2, jogador1); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA( new Player2(), new Player1("Guilherme") ); Console.Write("Start Game \n"); jogo.InitializeGame(); }
static void Main(string[] args) { // Contrutor jogar que recebe um Jogador. var jogo = new JogoFODA( new Jogador1(), new Jogador3() ); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA( new Jogador1("Alisson"), new Jogador3() // new Jogador3() ); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA( new jogador1(), new jogador2() ); var teste1 = 100; var teste2 = 200; Console.Write($"{teste1}teste\n"); jogo.IniciarJogo(); Console.Write($"{teste2}teste\n"); }
static void Main(string[] args) { JogoFODA jogo = new JogoFODA(new Jogador1("Elvis"), new Jogador1("Pivete")); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA(new Jogador("Jefferson"), new Jogador1("Júnior")); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA("Rogue"); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA(new Jogador1("Miro"), new Jogador2("Juninho Bola de Canhão")); jogo.IniciarJogo(); }
static void Main(string[] args) { var jogador1 = new JogoFODA(new Jogador("Donizete"), new Jogador2()); jogador1.IniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA(new Jogador("Ronaldo"), new Jogador("Maradona")); jogo.iniciarJogo(); }
static void Main(string[] args) { var jogo = new JogoFODA(new Jogador3("Jonas"), new Jogador1("Neymar")); jogo.IniciarJogo(); }