Skip to content

Instantly share code, notes, and snippets.

@dc74089
dc74089 / pong.pde
Last active March 1, 2023 19:40
Simple Pong Game in Processing
float x, y, speedX, speedY;
float diam = 10;
float rectSize = 200;
void setup() {
fullScreen();
fill(0, 255, 0);
reset();
}