gore-and-ash-actor ==================== The module provides API for actor based style of programming for [Gore&Ash](https://github.com/Teaspot-Studio/gore-and-ash) engine. Installing ========== Add following to your `stack.yml` to `packages` section: ```yaml - location: git: https://github.com/Teaspot-Studio/gore-and-ash-actor.git commit: ``` When defining you application stack, add `ActorT`: ``` haskell type AppStack = ModuleStack [ActorT, ... other modules ... ] IO ``` And derive `ActorMonad` for your resulting `AppMonad`: ``` haskell newtype AppMonad a = AppMonad (AppStack a) deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadThrow, MonadCatch, ActorMonad) ```