blob: aee789903187afb2b263ab2dc4f86289a4d53f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package me.xmrvizzy.skyblocker.skyblock.rei;
import me.shedaniel.rei.api.common.entry.EntryIngredient;
import me.shedaniel.rei.plugin.common.displays.crafting.DefaultCustomDisplay;
import net.minecraft.recipe.Recipe;
import org.jetbrains.annotations.Nullable;
import java.util.List;
/**
* Skyblock Crafting Recipe display class for REI
*/
public class SkyblockCraftingDisplay extends DefaultCustomDisplay {
public SkyblockCraftingDisplay(@Nullable Recipe<?> possibleRecipe, List<EntryIngredient> input, List<EntryIngredient> output) {
super(possibleRecipe, input, output);
}
}
|