aboutsummaryrefslogtreecommitdiff
path: root/src/Board.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-07 15:12:02 +0100
committerJoris Guyonvarch2015-03-07 15:12:02 +0100
commit17a58e0c4c67f27d87635bf1b2ca50fb11795ad3 (patch)
tree8de99cdf0b4021ca6db6920537e7d0fa250e90bc /src/Board.elm
parent336816d2e8ab4afff1562123dfde61bf3a68e61c (diff)
Organizing source code with subdirectories
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)