Files
Tetris/game/settings.py
T
2025-02-02 09:16:50 +01:00

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