twentefp-eventloop-graphics-0.1.0.1: src/EventLoop/CommonTypes.hs
module EventLoop.CommonTypes
( Pos
, Dimension
, Element
) where
import FPPrac
type Pos = (Float,Float) -- (x, y)
type Dimension = (Float, Float) -- (w, h)
type Element = [Char]