docs.rs failed to build lifers-raylib-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
lifers-raylib-0.2.0
lifers-raylib
Raylib frontend for lifers.
Usage
To use this frontend, simply create a cell type:
// Simple Game of Life-like cell
Your cells don't have to be this simple, they can have many attributes (type, group, etc.).
Now just implement RenderCell<Color> for it:
use Color;
use RenderCell;
Then you can use it to create an Automaton and pass it to RaylibFrontend (or use FrontendBuilder).