From f0d25896d40d8f4c23b5154d6f9a2ff7f7262d99 Mon Sep 17 00:00:00 2001 From: John Shaver Date: Mon, 26 Jun 2017 14:48:17 -0700 Subject: [PATCH] Sorting Types alphabetically --- src/Types.elm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Types.elm b/src/Types.elm index bd75b22..12306e1 100644 --- a/src/Types.elm +++ b/src/Types.elm @@ -16,6 +16,11 @@ type alias Model = } +type Msg + = Tick Time + | Tock Time + + type alias PlayerModel = { direction : Direction , location : ( Float, Float ) @@ -24,8 +29,3 @@ type alias PlayerModel = type alias Range = ( Float, Float ) - - -type Msg - = Tick Time - | Tock Time