Skip to content

Instantly share code, notes, and snippets.

View BryPix's full-sized avatar

Jalacey BryPix

  • Nigeria
View GitHub Profile
@BryPix
BryPix / PingPong.txt
Created February 14, 2026 12:10
Pingpong Game
import pygame
import sys
import math
import random
pygame.init()
# ----------------- SETTINGS -----------------
WIDTH, HEIGHT = 1000, 600
WINDOW = pygame.display.set_mode((WIDTH, HEIGHT))