Popularity
3.4
Declining
Activity
0.0
Stable
1
4
0
Monthly Downloads: 12
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v1.2.2.0
gore-and-ash-actor alternatives and similar packages
Based on the "gore" category.
Alternatively, view gore-and-ash-actor alternatives based on common mentions on social networks and blogs.
-
gore-and-ash
Attempt to build game engine with networking in Haskell using FRP as core idea. -
gore-and-ash-demo
Demostration game for Gore&Ash engine -
gore-and-ash-glfw
Core module for gore-and-ash for GLFW events -
gore-and-ash-network
Core module for gore-and-ash for network low-level API -
gore-and-ash-logging
Core module for gore-and-ash for logging utilities -
gore-and-ash-async
Core module for Gore&Ash engine that embeds async IO actions into game loop. -
gore-and-ash-lambdacube
Core module for Gore&Ash engine that do something.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of gore-and-ash-actor or a related project?
README
gore-and-ash-actor
The module provides API for actor based style of programming for Gore&Ash engine.
Installing
Add following to your stack.yml
to packages
section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-actor.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add ActorT
:
type AppStack = ModuleStack [ActorT, ... other modules ... ] IO
And derive ActorMonad
for your resulting AppMonad
:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadThrow, MonadCatch, ActorMonad)