public static VentanaRetarUsuarios getVentana() throws ExcepcionConectarBD {
   if (mVent == null) {
     mVent = new VentanaRetarUsuarios();
     mVent.cargarDatos();
   }
   return mVent;
 }
 @Override
 public void windowClosing(WindowEvent e) {
   try {
     VentanaFinal.getVentana().setVisible(true);
     VentanaRetarUsuarios.getVentana().setVisible(false);
   } catch (ExcepcionConectarBD e1) {
     e1.printStackTrace();
   }
 }
 @Override
 public void actionPerformed(ActionEvent arg0) {
   if (arg0.getActionCommand().equals("PRESS_btnRetar")) {
     try {
       GestorRetos.getGestor().retarJugadorAlSudokuHechoPorUsuarioSesion(selItemJugador);
       VentanaRetarUsuarios.getVentana().actualizarListaUsuarios();
     } catch (ExcepcionConectarBD e) {
       e.printStackTrace();
     }
   }
 }