Program.cs 246 B

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