Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created May 14, 2016 17:16
Show Gist options
  • Save HDBandit/cf1629ab66c1b2951f38619f7e3bb6b5 to your computer and use it in GitHub Desktop.
Save HDBandit/cf1629ab66c1b2951f38619f7e3bb6b5 to your computer and use it in GitHub Desktop.
private static final Ingredient TOMATO = new Ingredient("tomato", 2);
private static final Ingredient CHEESE = new Ingredient("cheese", 1);
private static final Ingredient EGG = new Ingredient("egg", 3);
private static final Ingredient BAICON = new Ingredient("baicon", 5);
private static final Ingredient BARBACOA_SAUCE = new Ingredient("barbacoa sauce", 2);
public static Ingredient tomato() {
return TOMATO;
}
public static Ingredient baicon() {
return BAICON;
}
public static Ingredient egg() {
return EGG;
}
public static Ingredient cheese() {
return CHEESE;
}
public static Ingredient barbacoaSauce() {
return BARBACOA_SAUCE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment