public void Fire(Graphics g, Bullet b) { b.X += 3; b.moveRock(); b.Draw(g); }
public Plane(int x, int y, Bitmap planeImage) : base(x, y, planeImage = new Bitmap(Properties.Resources.plane)) { bullet = new Bullet(x, y, p); }