├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── dex-images └── tetris │ └── Dockerfile ├── docs └── img │ ├── linux_tomorrow_night_80s.png │ ├── mac_grass.png │ ├── mac_plain.png │ └── play.gif ├── src ├── Tetris.hs └── UI │ ├── Game.hs │ └── PickLevel.hs ├── stack.yaml ├── stack.yaml.lock └── tetris.cabal /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/app/Main.hs -------------------------------------------------------------------------------- /dex-images/tetris/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/dex-images/tetris/Dockerfile -------------------------------------------------------------------------------- /docs/img/linux_tomorrow_night_80s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/docs/img/linux_tomorrow_night_80s.png -------------------------------------------------------------------------------- /docs/img/mac_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/docs/img/mac_grass.png -------------------------------------------------------------------------------- /docs/img/mac_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/docs/img/mac_plain.png -------------------------------------------------------------------------------- /docs/img/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/docs/img/play.gif -------------------------------------------------------------------------------- /src/Tetris.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/src/Tetris.hs -------------------------------------------------------------------------------- /src/UI/Game.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/src/UI/Game.hs -------------------------------------------------------------------------------- /src/UI/PickLevel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/src/UI/PickLevel.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /tetris.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samtay/tetris/HEAD/tetris.cabal --------------------------------------------------------------------------------