hastron/src/Hastron/Game/Engine.hs

9 lines
171 B
Haskell
Raw Normal View History

module Hastron.Game.Engine where
import Hastron.Game.Types
type GameStep = Game -> InEvent -> (Game, [OutEvent])
stepGame :: GameStep
stepGame game inEvent = undefined