From 17a58e0c4c67f27d87635bf1b2ca50fb11795ad3 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Sat, 7 Mar 2015 15:12:02 +0100 Subject: Organizing source code with subdirectories --- src/Board.elm | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/Board.elm (limited to 'src/Board.elm') 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) -- cgit v1.2.3