blob: 3d8a3abfd1e5e039dcaa3c57d6774ed27de993a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package gtnhlanth.common.tileentity.recipe.beamline;
import gregtech.api.recipe.BasicUIPropertiesBuilder;
import gregtech.api.recipe.NEIRecipePropertiesBuilder;
import gregtech.api.recipe.RecipeMapFrontend;
import gregtech.nei.RecipeDisplayInfo;
public class SourceChamberFrontend extends RecipeMapFrontend {
public SourceChamberFrontend(BasicUIPropertiesBuilder uiPropertiesBuilder,
NEIRecipePropertiesBuilder neiPropertiesBuilder) {
super(uiPropertiesBuilder, neiPropertiesBuilder);
}
@Override
public void drawDescription(RecipeDisplayInfo recipeInfo) {
drawEnergyInfo(recipeInfo);
// drawDurationInfo(recipeInfo); Unnecessary and misleading
drawSpecialInfo(recipeInfo);
drawMetadataInfo(recipeInfo);
drawRecipeOwnerInfo(recipeInfo);
}
}
|