aboutsummaryrefslogtreecommitdiff
path: root/src/Vec2.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-04 23:27:59 +0100
committerJoris Guyonvarch2015-03-05 00:27:32 +0100
commit4d007f6802246c6411a2838e68e957c2b4d56d3d (patch)
tree70519a5a2d6825bf2b64f6a8950a003b2ff4f150 /src/Vec2.elm
parentd37a301ed39bac823e0f2223b8d229b417e128c7 (diff)
downloadcatchvoid-4d007f6802246c6411a2838e68e957c2b4d56d3d.tar.gz
catchvoid-4d007f6802246c6411a2838e68e957c2b4d56d3d.tar.bz2
catchvoid-4d007f6802246c6411a2838e68e957c2b4d56d3d.zip
Adapt the game to elm version 0.14.1
Diffstat (limited to 'src/Vec2.elm')
-rw-r--r--src/Vec2.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Vec2.elm b/src/Vec2.elm
index a77b372..056c657 100644
--- a/src/Vec2.elm
+++ b/src/Vec2.elm
@@ -1,6 +1,6 @@
module Vec2 where
-type Vec2 =
+type alias Vec2 =
{ x : Float
, y : Float
}