public class WaitConstraint {
    public WaitConstraint(RecipeBlock n, int w){
	next = n;
	wait = w;
    }

    public RecipeBlock next;
    public int wait;
}
