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

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