SFont 0.1 → 0.1.1
raw patch · 2 files changed
+7/−6 lines, 2 files
Files
- Graphics/UI/SDL/SFont.hs +4/−4
- SFont.cabal +3/−2
Graphics/UI/SDL/SFont.hs view
@@ -3,12 +3,12 @@ -- Released under the BSD3 license module Graphics.UI.SDL.SFont - ( initFont- , SFont+ ( SFont+ , initFont , write+ , writeChar , textWidth , textHeight- , writeChar ) where import Graphics.UI.SDL@@ -19,7 +19,7 @@ data SFont = SFont { surface :: Surface , charPos :: Array Int Int- } deriving (Show)+ } -- | Load a font from an SDL surface initFont :: Surface -> IO SFont
SFont.cabal view
@@ -1,10 +1,11 @@ name: SFont-version: 0.1+version: 0.1.1 synopsis: SFont SDL Bitmap Fonts-description: A haskell port of Karl Bartel's bitmap SFont library+description: A haskell port of Karl Bartel's bitmap SFont library. Haddock documentation is available from the homepage category: Graphics license: BSD3 license-file: LICENSE+homepage: http://liamoc.net/static/SFont author: Liam O'Connor-Davis maintainer: liamoc@cse.unsw.edu.au build-type: Simple