module Types where import qualified Data.Text as T data Options = Options { optFullscreen :: Bool , optFlipScreens :: Bool , optFile :: T.Text } deriving (Show)