/** * @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) { // TODO Auto-generated method stub System.out.println("Lets begin"); Board board = new Board(7, 3, 42); board.createBoard(0, Position.toID(3, 3)); String[][] frame = board.getStringRepresentation(0, Position.toID(3, 3)); board.printBoard(frame); } }