<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">final class a2test {

  private static void sleeper(long time) {
    try {Thread.currentThread().sleep(time);}
    catch(Exception e) {}
  }

  public static void main(String args[]) {
    Board board=new Board();
    board.setPiece(13,1,new Piece('j'));
    board.setPiece(13,2,new Piece('a'));
    board.setPiece(13,3,new Piece('m'));
    board.setPiece(13,4,new Piece('e'));
    board.setPiece(13,5,new Piece('s'));

    BoardView.createPlayerWindow(board);

    sleeper(1000);
    board.setPiece(1,1,new Piece('a'));
    sleeper(1000);
    board.setPiece(2,3,new Piece('b'));

    //sleeper(5000);
    //System.exit(0);
  }

}
</pre></body></html>