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.elm40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/Model/Game.elm b/src/Model/Game.elm
deleted file mode 100644
index 97fbc4c..0000000
--- a/src/Model/Game.elm
+++ /dev/null
@@ -1,40 +0,0 @@
-module Model.Game
- ( Game
- , initialGame
- ) where
-
-import Random exposing (..)
-import Char exposing (KeyCode)
-import Time exposing (Time)
-import Set
-import Set exposing (Set)
-
-import Model.Player exposing (..)
-import Model.Cloud exposing (..)
-import Model.Vec2 exposing (Vec2)
-import Model.Config exposing (..)
-import Model.Round exposing (Round)
-import Model.Board exposing (initBoardSize)
-
-type alias Game =
- { elapsedTime : Float
- , boardSize : Vec2
- , keysDown : Set KeyCode
- , currentScore : Int
- , player : Player
- , cloud : Cloud
- , rounds : List Round
- , seed : Seed
- }
-
-initialGame : Seed -> Game
-initialGame seed =
- { elapsedTime = 0
- , boardSize = initBoardSize
- , keysDown = Set.empty
- , currentScore = 0
- , player = initPlayer
- , cloud = initCloud
- , rounds = []
- , seed = seed
- }