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