10 lines
113 B
Python
10 lines
113 B
Python
|
|
# Variables
|
|
global height, width
|
|
height, width = 600, 300
|
|
|
|
rows = 20
|
|
cols = 10
|
|
cell_size = 30
|
|
|
|
falling_speed = 5 |