summaryrefslogtreecommitdiff
blob: b943c2d71de87237c0b89fc8a641303119dfa0cf (plain)
1
2
3
4
5
6
7
8
module Battlemap.Direction exposing (..)

type Direction =
   None
   | Left
   | Right
   | Up
   | Down