elmman/src/Init/Player.elm

11 lines
176 B
Elm

module Init.Player exposing (..)
import Types exposing (PlayerModel, Direction(Right))
init : PlayerModel
init =
{ direction = Right
, location = ( 250, 450 )
}