static void Main() { CrashHandler.Bind(); try { using (var game = new Desktop()) game.Run(); } catch (Exception e) { CrashHandler.Report(e); } }