File: Display.hs

package info (click to toggle)
haskell-gloss 1.13.2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 344 kB
  • sloc: haskell: 2,903; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13

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)