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).