{-# OPTIONS -Wall #-} -------------------------------------------------------------------------------- -- | -- Module : Wumpus.Core.WumpusTypes -- Copyright : (c) Stephen Tetley 2009-2010 -- License : BSD3 -- -- Maintainer : Stephen Tetley -- Stability : unstable -- Portability : GHC with TypeFamilies and more -- -- This module re-exports types and functions from -- "Wumpus.Core.PictureInternal" but makes them opaque. -- -------------------------------------------------------------------------------- -- Having this module just re-exporting types should make -- the Haddock documentation more cohesive. Modules -- in wumpus-core should not use this module. module Wumpus.Core.WumpusTypes ( -- * Picture types Picture , DPicture , Primitive , DPrimitive , Path , DPath , PathSegment , DPathSegment , Label , DLabel -- * Drawing styles , PathProps -- Better hidden? , LabelProps -- " , EllipseProps -- " , DrawPath -- " , DrawEllipse -- " ) where import Wumpus.Core.PictureInternal