elmman/src/Init/Player.elm

12 lines
197 B
Elm
Raw Normal View History

module Init.Player exposing (..)
import Types exposing (PlayerModel, Direction(Right))
init : PlayerModel
init =
{ direction = Right
, location = ( 250, 450 )
2017-06-28 21:12:11 +00:00
, moving = False
}