ca.derekcormier.recipe.IngredientSnapshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recipe-java-runtime Show documentation
Show all versions of recipe-java-runtime Show documentation
Java runtime classes for the Recipe framework
package ca.derekcormier.recipe;
public abstract class IngredientSnapshot extends BaseIngredient {
public IngredientSnapshot(String type) {
super(type);
}
}