static void Main(string[] args) { Villano Vil = new Villano(); Superheroe Super = new Superheroe(); Combate Comb = new Combate(Super, Vil, 5); Super.Atacar(Vil); Vil.Atacar(Super); }
static void Main(string[] args) { Villano vil = new Villano(); Superheroe sup = new Superheroe(); Combate comb = new Combate(sup, vil, 5); vil.Atacar(sup); sup.Atacar(vil); }