Guest User

Untitled

a guest
Feb 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1.     piecesMap.put("1", new int[][]{{1}});
  2.         piecesMap.put("2", new int[][]{{1}, {1}});
  3.         piecesMap.put("v", new int[][]{{1,1}, {1,0}});
  4.         piecesMap.put("3", new int[][]{{1}, {1}, {1}});
  5.         piecesMap.put("t", new int[][]{{1, 1, 1}, {0, 1, 0}});
  6.         piecesMap.put("s", new int[][]{{1, 1}, {1, 1}});
  7.         piecesMap.put("d", new int[][]{{1, 1}, {0, 1}, {0, 1}});
  8.         piecesMap.put("i", new int[][]{{1}, {1}, {1}, {1}});
Add Comment
Please, Sign In to add comment