blob: adc000178c4bb2f96cf7811fd4ec04d18436e519 (
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
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
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;
}
}
|