/** * @file Game.java * * @author Christos Choutouridis AEM:8997 * @email cchoutou@ece.auth.gr */ package net.hoo2.auth.labyrinth; /** * */ public class Game { public static void main(String[] args) { try { Board board = new Board(7, 3, 60); board.createBoard(0, Position.toID(3, 3)); String[][] frame = board.getStringRepresentation(0, Position.toID(3, 3)); board.printBoard(frame); } catch (Exception e) { System.out.println(e.getMessage()); System.exit(1); } } }