├── .gitignore ├── LICENSE ├── Main.elm ├── Model.elm ├── README.md ├── Update.elm ├── View.elm └── images ├── background.png ├── bottomRock.png ├── plane.gif ├── textGameOver.png ├── textGetReady.png └── topRock.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/Main.elm -------------------------------------------------------------------------------- /Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/Model.elm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/README.md -------------------------------------------------------------------------------- /Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/Update.elm -------------------------------------------------------------------------------- /View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/View.elm -------------------------------------------------------------------------------- /images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/images/background.png -------------------------------------------------------------------------------- /images/bottomRock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/images/bottomRock.png -------------------------------------------------------------------------------- /images/plane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/images/plane.gif -------------------------------------------------------------------------------- /images/textGameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/images/textGameOver.png -------------------------------------------------------------------------------- /images/textGetReady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/images/textGetReady.png -------------------------------------------------------------------------------- /images/topRock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odedw/elm-plane/HEAD/images/topRock.png --------------------------------------------------------------------------------