예제 #1
0
 public void DrawGame()
 {
     tank1.Draw(); //updates object locations
     tank2.Draw();
     bullet1.Draw();
     bullet2.Draw();
     foreach (Wall w in walls)
     {
         w.Draw();
     }
 }