summaryrefslogtreecommitdiff
path: root/public/make_move.js
blob: ec0956d2585604345ae5b50c4175a733df58057b (plain)
1
2
3
4
5
function make_move(board, y ,x, new_y, new_x) {
    let temp = board[y][x]
    board[y][x] = 0
    board[new_y][new_x] = temp
}