Format, remove unnecessary verbosity
This commit is contained in:
parent
e64715d051
commit
2bc72a0e94
2 changed files with 3 additions and 4 deletions
|
@ -21,7 +21,6 @@ import Data.Monoid (First(..))
|
|||
-- 1. USE linear V2 instead of tuples.. dummy
|
||||
-- 3. possibly add 'user' to game state to draw name entry from UI.Game
|
||||
-- 4. sometimes freezes if manually shifting down while freezing
|
||||
-- 5. implement hard drop with spacebar
|
||||
|
||||
-- Types and instances
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ playGame lvl = do
|
|||
customMain (V.mkVty V.defaultConfig) (Just chan) app initialGame
|
||||
|
||||
levelToDelay :: Int -> Int
|
||||
levelToDelay n = floor $ 400000 * 0.85 ^ (2 * n) -- n + (fromIntegral n)
|
||||
levelToDelay n = floor $ 400000 * 0.85 ^ (2 * n)
|
||||
|
||||
-- Handling events
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue