/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { #if EDITOR Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MyEditor()); #else using (Game game = new Game()) { game.Run(); } #endif }