Skip to content

Instantly share code, notes, and snippets.

View billygl's full-sized avatar

Billy Grados billygl

View GitHub Profile
@billygl
billygl / tetris.py
Created February 4, 2025 02:44
tetris python by o3-mini
import pygame
import random
# Global Variables
CELL_SIZE = 30
COLS = 10
ROWS = 20
WIDTH = CELL_SIZE * COLS
HEIGHT = CELL_SIZE * ROWS