package letzplay.core; public class Progression { int done; int of; public Progression(int done, int of) { this.done = done; this.of = of; } @Override public String toString() { return done + " of " + of; } }