Skip to content

Instantly share code, notes, and snippets.

@girishso
Last active April 11, 2018 06:38
Show Gist options
  • Save girishso/3dfdee3580146bdfa29687267cf01310 to your computer and use it in GitHub Desktop.
Save girishso/3dfdee3580146bdfa29687267cf01310 to your computer and use it in GitHub Desktop.
CellWrapper
type alias CellWrapper =
{ pos : Position, cell : Cell } 
{-
Corresponding JSON
{
"board": [
{
"pos": [ 0, 0 ],
"cell": { "pebble": "Black", "noKill": false, "state": "Normal" }
},
{
"pos": [ 0, 1 ],
"cell": { "pebble": "Zilch", "noKill": false, "state": "Normal" }
}
}
-}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment