5 lines
124 B
Haskell
5 lines
124 B
Haskell
|
module Internal.Types where
|
||
|
|
||
|
type Vector = (Int, Int)
|
||
|
|
||
|
data Direction = North | East | South | West deriving (Show, Eq, Ord)
|