@hackage gore-and-ash-sdl2.1.1.0
Gore&Ash core module for integration with SDL library
Categories
License
BSD-3-Clause
Maintainer
ncrashed@gmail.com
Links
- Homepage
- Documentation
- No source repository
- Changelog
- Security
Versions
Installation
Dependencies (14)
- base >=4.7 && <5
- containers >=0.5.6.2
- deepseq >=1.4.1.1
- mtl >=2.2.1
- text >=1.2.2.0
- transformers >=0.4.2.0 Show all…
Dependents (1)
@hackage/gore-and-ash-demo
gore-and-ash-sdl
The module provides integraion with SDL2 library for Gore&Ash engine.
Installing
Add following to your stack.yml
to packages
section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-sdl.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add SDLT
:
type AppStack = ModuleStack [SDLT, ... other modules ... ] IO
And derive MonadSDL
for your resulting AppMonad
:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadThrow, MonadCatch, MonadSDL)