This project implements John Conway's Game of Life cellular automaton with multi-state cells (0-8) that simulates a gradual dying process. The rules are based on neighbor counts:
A dead cell becomes alive (state 8) if it has exactly 1 living neighbor.
A living cell survive if it has exactly 0 living neighbors.
Otherwise, the cell's state decreases by 1 each generation.