16 lines
152 B
Python
16 lines
152 B
Python
width, height = 0, 0
|
|
|
|
#grid surface
|
|
g_height, g_width = 600, 300
|
|
|
|
#score
|
|
game_score = 0
|
|
|
|
rows = 20
|
|
cols = 10
|
|
cell_size = 30
|
|
|
|
fps = 60
|
|
|
|
gamestate = True
|