blob: 97275cae5c625fd2646447c3f1e7f769eabf46be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package me.shedaniel.rei.plugin;
import me.shedaniel.rei.api.RecipeDisplay;
import net.minecraft.recipe.Recipe;
import net.minecraft.util.Identifier;
public interface DefaultCraftingDisplay<T> extends RecipeDisplay<Recipe> {
@Override
default Identifier getRecipeCategory() {
return DefaultPlugin.CRAFTING;
}
default public int getWidth() {
return 2;
}
default public int getHeight() {
return 2;
}
}
|