module Game.State (State (..)) where data State = State { batteries :: Int, totalBatteries :: Int, lives :: Int, totalLives :: Int, hitDelay :: Int, gameOverDelay :: Int, exit :: Bool, lastBattery :: (Int, Int) }