processing-for-haskell-0.1.0.0: src/Graphics/Proc/Core/State/Elements/Font.hs
module Graphics.Proc.Core.State.Elements.Font(
FontState(..)
) where
import Data.Default
data FontState = FontState
{ fontCurrent :: Maybe Font
, fontInitSize :: Int
, fontSize :: Int
}
type Font = String
instance Default FontState where
def = FontState Nothing 12 12