wumpus-drawing-0.1.0: src/Wumpus/Drawing/Shapes.hs
{-# OPTIONS -Wall #-}
--------------------------------------------------------------------------------
-- |
-- Module : Wumpus.Drawing.Shapes
-- Copyright : (c) Stephen Tetley 2010-2011
-- License : BSD3
--
-- Maintainer : Stephen Tetley <stephen.tetley@gmail.com>
-- Stability : highly unstable
-- Portability : GHC
--
-- Shim module for Shapes.
--
--------------------------------------------------------------------------------
module Wumpus.Drawing.Shapes
(
module Wumpus.Drawing.Shapes.Base
, module Wumpus.Drawing.Shapes.Circle
, module Wumpus.Drawing.Shapes.Diamond
, module Wumpus.Drawing.Shapes.Ellipse
, module Wumpus.Drawing.Shapes.Rectangle
) where
import Wumpus.Drawing.Shapes.Base
import Wumpus.Drawing.Shapes.Circle
import Wumpus.Drawing.Shapes.Diamond
import Wumpus.Drawing.Shapes.Ellipse
import Wumpus.Drawing.Shapes.Rectangle