blob: b63fdc97ce13fa683d1e4c12b1a6bb524f3cf2f2 (
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.crafting;
import me.shedaniel.rei.api.RecipeDisplay;
import me.shedaniel.rei.plugin.DefaultPlugin;
import net.minecraft.util.Identifier;
public interface DefaultCraftingDisplay<T> extends RecipeDisplay {
@Override
default Identifier getRecipeCategory() {
return DefaultPlugin.CRAFTING;
}
default public int getWidth() {
return 2;
}
default public int getHeight() {
return 2;
}
}
|