Program.cs 423 B

12345678910111213141516171819
  1. // ...existing code from Program.Windows.cs will be moved here...
  2. using System;
  3. using Microsoft.Xna.Framework;
  4. namespace Microsoft.Xna.Samples.MultiTouch
  5. {
  6. /// <summary>
  7. /// The main entry point for Windows DirectX.
  8. /// </summary>
  9. public static class Program
  10. {
  11. [STAThread]
  12. static void Main()
  13. {
  14. using var game = new Game1();
  15. game.Run();
  16. }
  17. }
  18. }