mirror of
https://github.com/csd4ni3l/game-of-life.git
synced 2026-01-01 04:23:42 +01:00
Fix game outline, performance improvements
This commit is contained in:
@@ -6,7 +6,7 @@ COLS = 80
|
||||
ROWS = 60
|
||||
CELL_SIZE = 10
|
||||
SPACING = 2
|
||||
NEIGHBORS = [0, 1, -1]
|
||||
NEIGHBORS = [(-1, 0), (-1, 1), (-1, -1),(0, 0), (0, 1), (0, -1), (1, 0), (1, 1), (1, -1)]
|
||||
|
||||
log_dir = 'logs'
|
||||
menu_background_color = Color(28, 28, 28)
|
||||
|
||||
Reference in New Issue
Block a user