Skip to content

Instantly share code, notes, and snippets.

Created July 20, 2017 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4198b24837421df3b7916c86c330699a to your computer and use it in GitHub Desktop.
Save anonymous/4198b24837421df3b7916c86c330699a to your computer and use it in GitHub Desktop.
the description for this gist
class Rook {
@volatile private var xPos: Long = 0l
@volatile private var yPos: Long = 0l
def updatePosition(offset: (Long, Long)): Unit = {
xPos += offset._1
yPos += offset._2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment