Program.cs 258 B

1234567891011121314
  1. using System;
  2. namespace RectangleCollision.Windows
  3. {
  4. internal static class Program
  5. {
  6. [STAThread]
  7. static void Main(string[] args)
  8. {
  9. var game = new RectangleCollisionGame();
  10. game.Run();
  11. }
  12. }
  13. }