free-game-0.2.0.0: free-game.cabal
name: free-game
version: 0.2.0.0
synopsis: Create graphical applications for free.
description:
Create something graphical with useful free monads.
.
/Small instruction/
.
* load your image by loadBitmapFromFile, embedIO, and loadPicture.
.
* describe an application using drawPicture, askInput, tick, and so on, in Game monad.
.
* apply `runGame defaultGameParam` to run.
.
* That's all!
.
In windows, free-game requires DXFI.dll. You can obtain it from <http://botis.org/shared/dist/DXFI-0.2.dll>.
homepage: https://github.com/fumieval/free-game
license: BSD3
license-file: LICENSE
author: Fumiaki Kinoshita
maintainer: fumiexcel@gmail.com
copyright: Copyright (C) 2012 Fumiaki Kinoshita
category: Graphics
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Graphics.FreeGame
, Graphics.FreeGame.Util
, Graphics.FreeGame.Sound
, Graphics.FreeGame.Input
, Graphics.FreeGame.Bitmap
, Graphics.FreeGame.Base
, Graphics.FreeGame.Backends.DXFI
-- other-modules:
build-depends: base == 4.5.*
, mtl >= 2.1
, containers >= 0.4
, free == 3.*
, random == 1.*
, repa >= 3.2
, JuicyPixels-repa >= 0.4
, array >= 0.3
, filepath >= 1.3
, parallel-io >= 0.3
, stb-truetype >= 0.1