Ejemplo n.º 1
0
        /**
         * Paint method to draw background, joystick, and coinpile
         */
        private void Form2_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;

            bg.Draw(g);
            joystick.draw(g);
            coinManager.DrawCoins(g);
        }