Guest User

Untitled

a guest
Feb 20th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. PIECESMAP.put("F", new int[][] {{0, 1, 0}, {1, 1, 1}, {0, 0, 1}});
  2. PIECESMAP.put("P", new int[][] {{1, 1, 1}, {0, 1, 1}});
  3. PIECESMAP.put("Y", new int[][] {{1, 1, 1, 1}, {0, 0, 1}});
  4. PIECESMAP.put("N", new int[][] {{0, 1, 1, 1}, {1, 1, 0, 0}});
  5. PIECESMAP.put("z", new int[][] {{0, 1}, {1, 1}, {1, 0}});
  6. PIECESMAP.put("i", new int[][] {{1, 1, 1, 1}});
  7. PIECESMAP.put("d", new int[][] {{1, 0, 0}, {1, 1, 1}});
  8. PIECESMAP.put("s", new int[][] {{1, 1}, {1, 1}});
  9. PIECESMAP.put("t", new int[][] {{1, 0, 0}, {1, 1, 0}, {1, 0, 0}});
  10. PIECESMAP.put("3", new int[][] {{1, 1, 1}});
  11. PIECESMAP.put("v", new int[][] {{1, 1}, {1, 0}});
  12. PIECESMAP.put("2", new int[][] {{1, 1}});
  13. PIECESMAP.put("1", new int[][] {{1}});
Add Comment
Please, Sign In to add comment