Skip to content

Instantly share code, notes, and snippets.

View minamiyama1994's full-sized avatar

Masakazu Minamiyama minamiyama1994

View GitHub Profile
import pygame, sys, random
pygame.init()
size = (800,450)
white = (255, 255, 255)
color = (30, 30, 180)
fps = 30
screen = pygame.display.set_mode(size)
pygame.display.set_caption('lifegame')
cellsize = 8