// ...existing code from Program.DesktopGL.cs will be moved here... using System; using Microsoft.Xna.Framework; namespace Microsoft.Xna.Samples.MultiTouch { /// /// The main entry point for DesktopGL. /// public static class Program { [STAThread] static void Main() { using var game = new Game1(); game.Run(); } } }