File: Core.hs

package info (click to toggle)
haskell-hgl 3.2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 280 kB
  • ctags: 1
  • sloc: haskell: 2,584; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 794 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
-----------------------------------------------------------------------------
-- |
-- Module      :  Graphics.HGL.Core
-- Copyright   :  (c) Alastair Reid, 1999-2003
-- License     :  BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer  :  libraries@haskell.org
-- Stability   :  provisional
-- Portability :  non-portable (requires concurrency)
--
-- Core functions of a simple graphics library.
--
-----------------------------------------------------------------------------

module Graphics.HGL.Core
	( module Graphics.HGL.Units
	, module Graphics.HGL.Run
	, module Graphics.HGL.Window
	, module Graphics.HGL.Draw
	, module Graphics.HGL.Key
	) where

import Graphics.HGL.Units
import Graphics.HGL.Run
import Graphics.HGL.Window
import Graphics.HGL.Draw
import Graphics.HGL.Key