Use explicit exports

This commit is contained in:
Sam Tay 2018-12-26 20:18:32 -05:00
parent a594680852
commit 5b8d419b24

View file

@ -1,6 +1,28 @@
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE FlexibleInstances #-}
module Tetris where
module Tetris
(
-- Game state modifiers
initGame
, timeStep
, shift
, rotate
, hardDrop
-- Game state queries
, isGameOver
, hardDroppedBlock
, coords
-- Types
, Block(..)
, Coord(..)
, Direction(..)
, Game(..)
, Tetrimino(..)
-- Lenses
, block, board, level, nextShape, score, shape
-- Constants
, boardHeight, boardWidth, relCells
) where
import Data.Map (Map)
import qualified Data.Map as M