Created
May 14, 2016 17:16
-
-
Save HDBandit/cf1629ab66c1b2951f38619f7e3bb6b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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