summaryrefslogtreecommitdiff
path: root/src/System/Utility/H9Clock/Type.hs
blob: db301fba7ffb6e141645ebc0bd8a4c453688b95b (plain)
1
2
3
4
5
6
module System.Utility.H9Clock.Type (Rectangle(..)) where

data Rectangle = Rectangle {
    min :: (Int, Int)
  , max :: (Int, Int) }
  deriving (Show, Eq)