module EventLoop.CommonTypes ( Pos , Dimension , Element ) where import FPPrac type Pos = (Float,Float) -- (x, y) type Dimension = (Float, Float) -- (w, h) type Element = [Char]