Examples of Square


Examples of tablero.Square

    }
  }

  // TODO: implementar esto mediante hash Map
  public void buildAbadiaMap() {
    tablero.addSquare(new Square(1, "Capilla"));
    tablero.addSquare(new Square(2, "Confesionario1"));
    tablero.addSquare(new Square(3, "Cripta"));
    tablero.addSquare(new Square(4, "Patio"));
    tablero.addSquare(new Square(5, "Confesionario2"));
    tablero.addSquare(new Square(6, "Claustro1"));
    tablero.addSquare(new Square(7, "Claustro2"));
    tablero.addSquare(new Square(8, "Claustro3"));
    tablero.addSquare(new Square(9, "Hall1"));
    tablero.addSquare(new Square(10, "Celda1"));
    tablero.addSquare(new Square(11, "Scriptorium"));
    tablero.addSquare(new Square(12, "Biblioteca"));
    tablero.addSquare(new Square(13, "Hall2"));
    tablero.addSquare(new Square(14, "Celda2"));
    tablero.addSquare(new Square(15, "Claustro4"));
    tablero.addSquare(new Square(16, "Hall3"));
    tablero.addSquare(new Square(17, "Celda3"));
    tablero.addSquare(new Square(18, "Sala capitular"));
    tablero.addSquare(new Square(19, "Hall4"));
    tablero.addSquare(new Square(20, "Celda4"));
    tablero.addSquare(new Square(21, "Hall5"));
    tablero.addSquare(new Square(22, "Celda5"));
    tablero.addSquare(new Square(23, "Locutorio"));
    tablero.addSquare(new Square(24, "Hall6"));
    tablero.addSquare(new Square(25, "Celda6"));
    tablero.connectSquare(getSquare(1), getSquare(2));
    tablero.connectSquare(getSquare(1), getSquare(3));
    tablero.connectSquare(getSquare(1), getSquare(4));
    tablero.connectSquare(getSquare(4), getSquare(5));
    tablero.connectSquare(getSquare(4), getSquare(6));
View Full Code Here
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.