blob: 84d0beedf7ef03939107f159890909a7280b868d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright (c) 2018, 2019, 2020 shedaniel
* Licensed under the MIT License (the "License").
*/
package me.shedaniel.rei.plugin.smoking;
import me.shedaniel.rei.plugin.DefaultPlugin;
import me.shedaniel.rei.plugin.cooking.DefaultCookingDisplay;
import net.minecraft.recipe.SmokingRecipe;
import net.minecraft.util.Identifier;
public class DefaultSmokingDisplay extends DefaultCookingDisplay {
public DefaultSmokingDisplay(SmokingRecipe recipe) {
super(recipe);
}
@Override
public Identifier getRecipeCategory() {
return DefaultPlugin.SMOKING;
}
}
|