public class ResourceAllocation {
    public String resource;
    public int start;
    public int end;
    public RecipeBlock block;

    public ResourceAllocation(String r, int s, int e, RecipeBlock rb){
	resource = r;
	start = s;
	end = e;
	block = rb;
    }
}
