You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
505 B

  1. /**
  2. * @file Game.java
  3. *
  4. * @author Christos Choutouridis AEM:8997
  5. * @email cchoutou@ece.auth.gr
  6. */
  7. package net.hoo2.auth.labyrinth;
  8. /**
  9. *
  10. */
  11. public class Game {
  12. public static void main(String[] args) {
  13. // TODO Auto-generated method stub
  14. System.out.println("Lets begin");
  15. Board board = new Board(7, 3, 42);
  16. board.createBoard(0, Position.toID(3, 3));
  17. String[][] frame = board.getStringRepresentation(0, Position.toID(3, 3));
  18. board.printBoard(frame);
  19. }
  20. }