aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/recipe/ShapedRecipeObject.java
blob: bde574b3e66fd56fd209e5da34815fe8e1c49dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package miscutil.core.recipe;

import miscutil.core.util.Utils;
import miscutil.core.util.recipe.UtilsRecipe;
import net.minecraft.item.ItemStack;

public class ShapedRecipeObject {

	public Object object_A;
	public Object object_B;
	public Object object_C;
	public Object object_D;
	public Object object_E;
	public Object object_F;
	public Object object_G;
	public Object object_H;
	public Object object_I;
	public ItemStack object_OUTPUT;
	
	public ShapedRecipeObject(
			Object input_A,Object input_B,Object input_C,
			Object input_D,Object input_E,Object input_F,
			Object input_G,Object input_H,Object input_I,
			ItemStack input_Output){
		this.object_A = input_A;
		this.object_B = input_B;
		this.object_C = input_C;
		this.object_D = input_D;
		this.object_E = input_E;
		this.object_F = input_F;
		this.object_G = input_G;
		this.object_H = input_H;
		this.object_I = input_I;
		this.object_OUTPUT = input_Output;
		Utils.LOG_SPECIFIC_WARNING("ShapedRecipeObject", "New object created.", 36);
	}
	
	public void buildRecipe(){
		UtilsRecipe.recipeBuilder(object_A, object_B, object_C, object_D, object_E, object_F, object_G, object_H, object_I, object_OUTPUT);
	}
	
}