Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1.     public void onTouchDown(final int position) {
  2.         int[][] arr = _model.previewPutFigure(position);
  3.         if (checkIsEmpty(arr)) {
  4.             getView().draw(_model.previewPutFigure(position), new int[]{0, 0, 0});
  5.             new PutFigureAnimator().animate(position, convertViewToAvtivity(getView()), true);
  6.         }
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement