Exemple #1
0
 /// <summary>
 /// This method is used to draw the gameplay elements of the screen (that is, everything but the terrain).
 /// </summary>
 private void DrawGameplay()
 {
     backgroundGraphics.Render(gameplayGraphics.Graphics);
     currentGame.DrawPlayers(gameplayGraphics.Graphics, displayPanel.Size);
     currentGame.DrawAttacks(gameplayGraphics.Graphics, displayPanel.Size);
 }