aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/plugin/blasting/DefaultBlastingDisplay.java
blob: 510d5eb96b262c8c23498e17c2411b0b357cd904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Roughly Enough Items by Danielshe.
 * Licensed under the MIT License.
 */

package me.shedaniel.rei.plugin.blasting;

import me.shedaniel.rei.plugin.DefaultPlugin;
import me.shedaniel.rei.plugin.cooking.DefaultCookingDisplay;
import net.minecraft.recipe.BlastingRecipe;
import net.minecraft.util.Identifier;

public class DefaultBlastingDisplay extends DefaultCookingDisplay {
    
    public DefaultBlastingDisplay(BlastingRecipe recipe) {
        super(recipe);
    }
    
    @Override
    public Identifier getRecipeCategory() {
        return DefaultPlugin.BLASTING;
    }
}