using System; using System.Collections.Generic; using System.Linq; using System.Text; using Core; using System.Windows.Forms; namespace XNA_Runner { class Program { static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); // XnaUserInterface.MainWindow main = new XnaUserInterface.MainWindow(); //Start an update thread // Application.Run(main); } } }