this.modeloPartida = modeloPartida;
String nombre = this.modeloPartida.verNombrePolicia();
String rango = this.modeloPartida.verRangoPolicia().getNombre();
int cantArrestos = this.modeloPartida.verCantDeArrestos();
this.panel = new InfoPoliciaVista(nombre, rango, cantArrestos);
this.panel.addVolverAPanelPartida(new ActionListener() {
public void actionPerformed(ActionEvent e) {
volverAPanelPartida();
}