Skip to content

Instantly share code, notes, and snippets.

@stuartallen
stuartallen / cubert.pde
Last active August 29, 2015 14:07
Cubert
// constants
int TOP_X = 250;
int TOP_Y = 150;
int ROWS = 5;
int CUBERT_MOVE = 50;
float MOVE_TIME = 0.5;
// global variables
int cubert_x = TOP_X;
int cubert_y = TOP_Y;
float cubert_move_time = -1.0;