gloss-1.13.2.2: Graphics/Gloss/Data/Display.hs
module Graphics.Gloss.Data.Display
(Display(..))
where
-- | Describes how Gloss should display its output.
data Display
-- | Display in a window with the given name, size and position.
= InWindow String (Int, Int) (Int, Int)
-- | Display full screen.
| FullScreen
deriving (Eq, Read, Show)