Skip to content

Instantly share code, notes, and snippets.

@andreasronge
Created June 19, 2019 10:26
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 andreasronge/a3afa4cdf26570b7ab3cc652e507f6eb to your computer and use it in GitHub Desktop.
Save andreasronge/a3afa4cdf26570b7ab3cc652e507f6eb to your computer and use it in GitHub Desktop.
defmodule Game do
defstruct board: nil, my_position: nil, name: "", health: 0
end
defmodule Board do
defstruct positions: %{}, width: 0, height: 0
end
defmodule Snake do
defstruct id: "", positions: %{}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment