public class ScheduledBlock {
    public RecipeBlock block;
    public int startTime;
    public int endTime;

    public ScheduledBlock(RecipeBlock rb, int s) {
	block = rb;
	startTime = s;
	endTime = s+rb.maxDuration;
    }
}
