Program.cs 406 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace Tetris
  5. {
  6. static class Program
  7. {
  8. private static Engine game;
  9. /// <summary>
  10. /// The main entry point for the application.
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. game = new Engine();
  16. game.Run();
  17. }
  18. }
  19. }