robinheghan / elm-warrior / Warrior.Coordinate

Coordinates are simple records that describes a position on a map


type alias Coordinate =
{ x : Basics.Int, y : Basics.Int }

A Coordinate is the intersection of column x and row y.

toString : Coordinate -> String

A human readable string of the given coordinate.