示例#1
0
        protected override void Draw(GameTime gameTime)
        {
            GraphicsDevice.Clear(Color.CornflowerBlue);

            // TODO: Add your drawing code here
            spriteBatch.Begin();
            bola.Desenhar(spriteBatch);
            jogador1.Desenhar(spriteBatch);
            jogador2.Desenhar(spriteBatch);
            spriteBatch.End();
            base.Draw(gameTime);
        }