Last active
March 1, 2017 19:31
-
-
Save deque-blog/b9c97031cd4562354430d7616d147bdf 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-cell | |
"Dispatch the rendering of the cell based on the player" | |
[[coord owner :as cell] on-move] | |
(let [renderer (case owner | |
:owner/cross render-cross | |
:owner/circle render-circle | |
render-square)] | |
(renderer coord {:on-click #(on-move coord)}))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment