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