public static FormArena getForm() { if (s_Form == null) { s_Form = new FormArena(); } return(s_Form); }
private void buttonArena_Click(object sender, EventArgs e) { string lg = "[enter Arena UI]\r\n"; Log(lg); this.Hide(); timerWait.Stop(); FormArena.showForm(); }
public static void showForm() { if (s_Form == null) { s_Form = new FormArena(); } s_Form.Show(); s_Form.TimerStart(); }