aboutsummaryrefslogtreecommitdiff
path: root/src/Board.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/Board.elm')
-rw-r--r--src/Board.elm15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Board.elm b/src/Board.elm
deleted file mode 100644
index fa544d8..0000000
--- a/src/Board.elm
+++ /dev/null
@@ -1,15 +0,0 @@
-module Board where
-
-import Vec2 (Vec2)
-
-boardSize : Vec2
-boardSize =
- { x = 500
- , y = 500
- }
-
-boardDiagonal : Float
-boardDiagonal =
- let x = boardSize.x
- y = boardSize.y
- in sqrt(x^2 + y^2)