Skip to content

Instantly share code, notes, and snippets.

View KosayJabre's full-sized avatar

Kosay KosayJabre

View GitHub Profile
@KosayJabre
KosayJabre / Particle Simulator.py
Created April 18, 2018 05:22
Click the mouse to generate a particle
import pygame, random, math
WHITE = (255,255,255)
BLACK = (0,0,0)
SCREENSIZE = (500,500)
pygame.init()
screen = pygame.display.set_mode(SCREENSIZE)
clock = pygame.time.Clock()