diff options
Diffstat (limited to 'src/main/java/me/shedaniel/rei/plugin/DefaultCraftingDisplay.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/plugin/DefaultCraftingDisplay.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/java/me/shedaniel/rei/plugin/DefaultCraftingDisplay.java b/src/main/java/me/shedaniel/rei/plugin/DefaultCraftingDisplay.java deleted file mode 100644 index adc000178..000000000 --- a/src/main/java/me/shedaniel/rei/plugin/DefaultCraftingDisplay.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * 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; - } - -} |
