package jogo_de_futebol; public class Jogo { Time casa; Time visitante; Placar placar; void defineCasa(Time t) { this.casa = t; } void defineVisitante(Time t) { this.visitante = t; } }