Skip to content

Conway's Game of Life implementation in C++ with Raylib

Notifications You must be signed in to change notification settings

YV31/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game of Life

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;

About

Conway's Game of Life implementation in C++ with Raylib

Topics

Resources

Stars

Watchers

Forks