Conway's Game of Life implementation in C++ with raylib.
Compilation:
Link the raylib librarie with the pkg-config or link it with whatever thing you use.
Example:
clang++ game-of-life.cpp `pkg-config --static --libs raylib`
Change the settings:
Change the number of columns, rows or the size of the cell in the code and recompile.
Default settings:
const int cell_size = 4;
const int rows = 150;
const int columns = 150;