private void FloorSelectForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     if (character == 1)
     {
         ManagerGUI ManagerGUI = new ManagerGUI(uid);
         ManagerGUI.Show();
     }
     if (character == 0)
     {
         UserGUI UserGUI = new UserGUI(uid);
         UserGUI.Show();
     }
 }
        private void AllUserSelectForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            ManagerGUI ManagerGUI = new ManagerGUI(mid);

            ManagerGUI.Show();
        }