summaryrefslogtreecommitdiff
path: root/src/Graphics/Fountainhead/Type.hs
blob: 3dc2a3f7dd57d8a544c2daeeee5e91168f114444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- | Generic font types.
module Graphics.Fountainhead.Type
    ( F2Dot14(..)
    , Fixed32(..)
    ) where

import Data.Int (Int16)
import Data.Word (Word32)

newtype Fixed32 = Fixed32 Word32
    deriving (Eq, Show)

newtype F2Dot14 = F2Dot14 Int16
    deriving (Eq, Show)