Package modelo

Source Code of modelo.Aplicacion

package modelo;

import java.io.IOException;

import javax.xml.parsers.ParserConfigurationException;

import org.xml.sax.SAXException;

import controlador.JuegoControlador;
import vista.JuegoVista;

public class Aplicacion {

  public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException {
    Juego modelo = new Juego();
    JuegoVista vista = new JuegoVista();   
    new JuegoControlador(modelo, vista);
  }

}
TOP

Related Classes of modelo.Aplicacion

TOP
Copyright © 2018 www.massapi.com. 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.