Browse Source

game of life: changed color back to blue

feature/balanceutils
informaniac 8 years ago
parent
commit
b403b9de74
  1. 2
      gameOfLife.py

2
gameOfLife.py

@ -18,7 +18,7 @@ DELAY = 300 @@ -18,7 +18,7 @@ DELAY = 300
DEAD = 0
DEADCOLOR = (0,0,0)
ALIVE = 1
ALIVECOLOR = (0,255,0)
ALIVECOLOR = (0,0,255)
dimension = blup.frame.FrameDimension(WIDTH, HEIGHT, COLOR_DEPTH, COLORS)
animation = blup.animation.Animation(dimension)

Loading…
Cancel
Save