1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-19 01:16:36 +02:00

Implement Conway's Game of Life

This commit is contained in:
jfreegman
2021-06-01 23:00:00 -04:00
parent c293fbe0c7
commit 5e67571908
8 changed files with 659 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# Variables for game support
GAMES_CFLAGS = -DGAMES
GAMES_OBJ = game_base.o game_centipede.o game_chess.o game_util.o game_snake.o
GAMES_OBJ = game_base.o game_centipede.o game_chess.o game_life.o game_util.o game_snake.o
CFLAGS += $(GAMES_CFLAGS)
OBJ += $(GAMES_OBJ)