aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Game.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Game.elm')
-rw-r--r--src/Model/Game.elm5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Model/Game.elm b/src/Model/Game.elm
index 705841d..6a9020f 100644
--- a/src/Model/Game.elm
+++ b/src/Model/Game.elm
@@ -10,6 +10,7 @@ import Model.Player (..)
import Model.Cloud (..)
import Model.Vec2 (Vec2)
import Model.Config (..)
+import Model.Round (Round)
type alias Game =
{ time : Float
@@ -17,7 +18,7 @@ type alias Game =
, currentScore : Int
, player : Player
, cloud : Cloud
- , scores : List Int
+ , rounds : List Round
, seed : Seed
}
@@ -28,6 +29,6 @@ initialGame seed =
, currentScore = 0
, player = initPlayer
, cloud = initCloud
- , scores = []
+ , rounds = []
, seed = seed
}