7 lines
131 B
Python
7 lines
131 B
Python
|
import pygame
|
||
|
width, height = 640, 640
|
||
|
rows, cols = 8, 8
|
||
|
size = width//cols
|
||
|
yellow = (216,178,0)
|
||
|
green= (103,178,0)
|
||
|
red = (255,0,0)
|