Fix orientation error
This commit is contained in:
parent
ebb27755d2
commit
079294e2df
|
@ -3,8 +3,8 @@ module Game.State where
|
||||||
data Direction = U | D | L | R
|
data Direction = U | D | L | R
|
||||||
|
|
||||||
movePos :: Direction -> (Int, Int) -> (Int, Int)
|
movePos :: Direction -> (Int, Int) -> (Int, Int)
|
||||||
movePos U (x, y) = (x, y - 1)
|
movePos U (x, y) = (x, y + 1)
|
||||||
movePos D (x, y) = (x, y + 1)
|
movePos D (x, y) = (x, y - 1)
|
||||||
movePos L (x, y) = (x - 1, y)
|
movePos L (x, y) = (x - 1, y)
|
||||||
movePos R (x, y) = (x + 1, y)
|
movePos R (x, y) = (x + 1, y)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue