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

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