示例#1
0
 private void DrawGameplay()
 {
     //Renders the backgroundGraphics buffer to the gameplayGraphics buffer:
     backgroundGraphics.Render(gameplayGraphics.Graphics);
     currentGame.DrawTanks(gameplayGraphics.Graphics, displayPanel.Size);
     currentGame.DisplayEffects(gameplayGraphics.Graphics, displayPanel.Size);
 }