DefaultBlastingDisplay.java 586 B

1234567891011121314151617181920212223
  1. /*
  2. * Roughly Enough Items by Danielshe.
  3. * Licensed under the MIT License.
  4. */
  5. package me.shedaniel.rei.plugin.blasting;
  6. import me.shedaniel.rei.plugin.DefaultPlugin;
  7. import me.shedaniel.rei.plugin.cooking.DefaultCookingDisplay;
  8. import net.minecraft.recipe.BlastingRecipe;
  9. import net.minecraft.util.Identifier;
  10. public class DefaultBlastingDisplay extends DefaultCookingDisplay {
  11. public DefaultBlastingDisplay(BlastingRecipe recipe) {
  12. super(recipe);
  13. }
  14. @Override
  15. public Identifier getRecipeCategory() {
  16. return DefaultPlugin.BLASTING;
  17. }
  18. }