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