Module
Game
- Package
- purescript-game
- Repository
- artemisSystem/purescript-game
#GameUpdate Source
newtype GameUpdate (extra :: Row Type) (req :: Row Type) (execOut :: Row Type) a
Constructors
GameUpdate (Reducer extra req -> Run execOut a)
#runUpdate Source
runUpdate :: forall a execOut req extra. Reducer extra req -> GameUpdate extra req execOut a -> Run execOut a
#identityReducer Source
identityReducer :: forall req. Reducer () req
The identity Reducer
. runReducer identityReducer
is the same as
identity
.