abstract class FaseBase { FaseBase() { this(color(255, 255, 255, 0)); //Màxima transparència } FaseBase(color pBackgroundInicial) { this.backgroundInicial = pBackgroundInicial; this.endedDraw = false; } abstract void runSetup(); abstract void runDraw(); boolean endedDraw; color backgroundInicial; }