Popularity
3.9
Declining
Activity
0.0
Stable
1
4
1
Monthly Downloads: 7
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v1.1.2.0
gore-and-ash-glfw alternatives and similar packages
Based on the "gore" category.
Alternatively, view gore-and-ash-glfw 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-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-actor
Core module for gore-and-ash for actor based programming style -
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.
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of gore-and-ash-glfw or a related project?
README
gore-and-ash-glfw
The module provides events for GLFW input for Gore&Ash engine.
Installing
Add following to your stack.yml
to packages
section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-glfw.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add GLFWT
:
type AppStack = ModuleStack [GLFWT, ... other modules ... ] IO
And derive MonadGLFWInput
for your resulting AppMonad
:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadGLFWInput)