11.18 beakout
#region Constants /// Rectangles for our graphics, tested with the unit tests below. static readonly Rectangle GamePaddleRect = new Rectangle(39, 1, 93, 23), GameBallRect = new Rectangle(1, 1, 36, 36), GameBlockRect = new Rectangle(136, 1, 62, 27), GameYouWonRect = new Rectangle(2, 39, 92, 21), GameYouLostRect = new Rectangle(105, 39, 94, 21); /// Ball speed multiplicator, this is how much scree..
더보기