Package vista

Examples of vista.NuevaPartidaVista


  private Partida modeloPartida;

  public NuevaPartidaControlador(Partida partida, JuegoVista vista) {
    String ciudadActual = partida.verCiudadInicial().getNombre();
    String sexoLadron = partida.getLadron().verSexo();
    this.panel = new NuevaPartidaVista(ciudadActual, sexoLadron);
    this.modeloPartida = partida;
    this.vista = vista;
   
    this.panel.addAbrirPanelPartidaListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
View Full Code Here

TOP

Related Classes of vista.NuevaPartidaVista

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.