Package models

Examples of models.Configuration


*/
public class SudokuPrincipal {

    public static void main(String[] args) {
        /*Partida y configuracion*/
        Configuration config  = new Configuration();
        Partida modelo = new Partida(config);
        /*Controlador Unico*/
        SudokuController.createInstance(modelo);       
        SudokuController controller = SudokuController.getInstance();       
        /*Vista unica*/
 
View Full Code Here

TOP

Related Classes of models.Configuration

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.