aboutsummaryrefslogtreecommitdiff
path: root/src/Game/State.hs
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-02-16 21:11:18 +0000
committerJuan J. Martinez <jjm@usebox.net>2023-02-16 21:11:18 +0000
commit1d68ac340c28792b2b498e204ef123730d901443 (patch)
tree840514d136efbfe57b1f1321cc0b3d82286fb188 /src/Game/State.hs
parent11120a24b6927073d55d2e56b4b911817dedaae2 (diff)
downloadspace-plat-hs-1d68ac340c28792b2b498e204ef123730d901443.tar.gz
space-plat-hs-1d68ac340c28792b2b498e204ef123730d901443.zip
Added lives to the HUD
Diffstat (limited to 'src/Game/State.hs')
-rw-r--r--src/Game/State.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Game/State.hs b/src/Game/State.hs
index 9988936..2223434 100644
--- a/src/Game/State.hs
+++ b/src/Game/State.hs
@@ -2,5 +2,7 @@ module Game.State (State (..)) where
data State = State
{ batteries :: Int,
- totalBatteries :: Int
+ totalBatteries :: Int,
+ lives :: Int,
+ totalLives :: Int
}