Guest User

Untitled

a guest
Jun 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1.     public void printBoard(char[][] level){
  2.         for(int i = 0; i < level.length; i++)
  3.             for(int j = 0; j < level.length; j++){
  4.                 GImage fieldImage = createGImage(level[i][j]);
  5.                 add(fieldImage, 64*j , i*64);
  6.         }
  7.     }
Add Comment
Please, Sign In to add comment