class Splash{ PImage img; Splash(){ img = loadImage("guemboi_160.png"); } void draw(){ frameRate(12); fill(0); rect(0,300,800,300); fill(255); textSize(48+8); text("GUEMBOI.*", 20,300); image(img, 400+200, 300-80-4); textSize(16); text("by coyarzun@error404.cl", 24,300+16); if(frameCount%2==0)fill(255,0,0); textSize(32); text("PRESS ", 20+2,330+32); } }