spice-0.1.0.0: src/FRP/Spice/Game.hs
module FRP.Spice.Game where ------------------- -- Local Imports -- import FRP.Spice.Input ---------- -- Code -- -- The game instance, to be used with updating and rendering class Game a where update :: Float -> Input -> a -> a render :: a -> IO ()