tetris-cli/app/Main.hs
2017-06-17 02:55:21 -04:00

15 lines
401 B
Haskell

module Main where
import Tetris (Game)
import UI.PickLevel (pickLevel)
import UI.Game (playGame)
-- | TODO possibly allow a small number of CLI args,
-- like tetris --high-score
main :: IO ()
main = pickLevel >>= playGame >>= handleEndGame
-- | TODO possibly save high score (with 3 initials? kick it real old school?) to ~/.tetris
handleEndGame :: Game -> IO ()
handleEndGame = const $ return ()