Created
November 10, 2017 12:01
-
-
Save Krishan14sharma/7df8b7c521f55015ab885b0171f26f15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var rectIndex = Pair(0, 0) | |
var touching: Boolean = false | |
.. | |
.. | |
MotionEvent.ACTION_DOWN -> { | |
rectIndex = getRectIndexesFor(x, y) | |
touching = true | |
invalidate(squares[rectIndex.first][rectIndex.second]) | |
} | |
MotionEvent.ACTION_UP -> { | |
touching = false | |
invalidate(squares[rectIndex.first][rectIndex.second]) | |
} | |
.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment