internal static void InitAndRun(JBGameStartForm startForm) { Thread th = new Thread(new JBMainFormLauncher(startForm).LoadMainForm); th.SetApartmentState(ApartmentState.STA); th.IsBackground = false; th.Start(); }
public JBMainFormLauncher(JBGameStartForm startForm) { this.startForm = startForm; }