xxxxxxxxxx
19
let MyPenis, BOB;
function preload() {
BOB = loadImage(`images/cock-bobross.png`);
}
function setup() {
createCanvas(600, 600);
MyPenis = new Penis(BOB, 300, 600, 0);
}
function draw() {
background(20);
MyPenis.update();
}
function mouseClicked() {
MyPenis.cum();
}