Skip to content

Commit

Permalink
exposed main in modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ktuukkan committed Apr 1, 2016
1 parent af832a8 commit b81449c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Hypnocorn.elm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Hypnocorn(hypnocorn) where
module Hypnocorn(hypnocorn, main) where

import Color exposing (..)
import Graphics.Collage exposing (..)
Expand Down
4 changes: 2 additions & 2 deletions Rotozoom.elm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Rotozoom(cornfield, rotozoom) where
module Rotozoom(cornfield, rotozoom, main) where

import Color exposing (..)
import Graphics.Collage exposing (..)
Expand All @@ -15,7 +15,7 @@ cornfield w h t =
collage w h
[ tiledImage (w * 5) (h * 5) "chilicorn.png"
|> toForm
|> scale(0.4)
|> scale(0.425)
|> alpha ((t/4000))
]

Expand Down

0 comments on commit b81449c

Please sign in to comment.