gamegrid, falling, Tetrominos

This commit is contained in:
IM23a-bachmannj2
2024-12-05 17:05:08 +01:00
parent 9aad738200
commit 0995c6d8f2
4 changed files with 106 additions and 21 deletions
+10 -3
View File
@@ -1,3 +1,10 @@
# Set global width and height variables
global width, height
width, height = 800, 600
# Variables
global height, width
height, width = 600, 300
rows = 20
cols = 10
cell_size = 30
falling_speed = 5