aboutsummaryrefslogtreecommitdiff
path: root/src/Game/State.hs
blob: f8b57216481994fde91507d456efeba389ef56f9 (plain)
1
2
3
4
5
6
7
8
9
10
module Game.State (State (..)) where

data State = State
  { batteries :: Int,
    totalBatteries :: Int,
    lives :: Int,
    totalLives :: Int,
    hitDelay :: Int,
    gameOverDelay :: Int
  }