Program.cs 413 B

1234567891011121314151617181920
  1. using System;
  2. namespace RenderTarget2DSample.Windows
  3. {
  4. /// <summary>
  5. /// The main class.
  6. /// </summary>
  7. public static class Program
  8. {
  9. /// <summary>
  10. /// The main entry point for the application.
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. using var game = new RenderTarget2DSampleGame();
  16. game.Run();
  17. }
  18. }
  19. }