Last active
March 3, 2017 18:24
-
-
Save deque-blog/25da93bea588ed9bb3c7b93d2eb69e7b 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
(defn render-board | |
"Render the board: | |
* Creates a SVG panel | |
* Render the cells in it" | |
[board {:keys [on-move]}] | |
(utils/square-svg-panel | |
{:model-size board/size | |
:pixel-size cst/board-pixel-size} | |
(for [cell board] | |
[cell/render-cell cell on-move] | |
))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment