implemented TableCell type

This commit is contained in:
Jonathan Lamothe 2019-11-26 00:34:01 -05:00
parent 8795cb46a9
commit d0f237e707

View File

@ -43,6 +43,7 @@ module Mtlstats.Types (
GameStats (..),
Prompt (..),
SelectParams (..),
TableCell (..),
-- * Lenses
-- ** ProgState Lenses
database,
@ -622,6 +623,14 @@ data SelectParams a = SelectParams
-- ^ The function to call when the selection doesn't exist
}
-- | Describes a table cell
data TableCell
= CellText String
-- ^ A cell with text
| CellFill Char
-- ^ A cell filled with the given character
deriving (Eq, Show)
makeLenses ''ProgState
makeLenses ''GameState
makeLenses ''CreatePlayerState