1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:47:34 +00:00

Games: Add GameOfLife

This patch introduces a new game based on Conway's Game of Life.
This commit is contained in:
Andres Crucitti 2021-04-11 18:46:58 -07:00 committed by Linus Groh
parent e4f61c6f28
commit d99991e39c
18 changed files with 667 additions and 288 deletions

View file

@ -0,0 +1,11 @@
compile_gml(GameOfLife.gml GameOfLifeGML.h game_of_life_gml)
set(SOURCES
Board.cpp
BoardWidget.cpp
GameOfLifeGML.h
main.cpp
)
serenity_app(GameOfLife ICON app-gameoflife)
target_link_libraries(GameOfLife LibGUI)