class Time { float rest; void decideTime(int time) { rest = time; } void displayTime(int x, int y) { PFont font = loadFont("pochi.vlw"); textFont(font); textSize(80); fill(0); text( (int)rest, x, y); } void countdown() { rest -= 0.1; } }