11 lines
197 B
Elm
11 lines
197 B
Elm
module Init.Player exposing (..)
|
|
|
|
import Types exposing (PlayerModel, Direction(Right))
|
|
|
|
|
|
init : PlayerModel
|
|
init =
|
|
{ direction = Right
|
|
, location = ( 250, 450 )
|
|
, moving = False
|
|
}
|