選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
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. }