public MainForm() { misControles(); this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.DoubleBuffer, true); miPantalla = new Pantalla(pb); juego = new Juego(miPantalla); juego.pintar(); timer1.Start(); }
public Juego(Pantalla pantalla) { _pantalla = pantalla; jugador1 = new Jugador(10, 10); enemigo1 = new Enemigo(0, 50); }