Added plasma generator. Some work on #884

This commit is contained in:
drcrazy 2017-10-13 03:20:34 +03:00
parent 709922b708
commit 47134cf2ab
13 changed files with 232 additions and 87 deletions

View file

@ -27,15 +27,16 @@ package techreborn.api.generator;
import javax.annotation.Nonnull;
public enum EFluidGenerator {
THERMAL("TechReborn.ThermalGenerator"), GAS("TechReborn.GasGenerator"), DIESEL(
"TechReborn.DieselGenerator"), SEMIFLUID("TechReborn.SemifluidGenerator");
THERMAL("TechReborn.ThermalGenerator"),
GAS("TechReborn.GasGenerator"),
DIESEL("TechReborn.DieselGenerator"),
SEMIFLUID("TechReborn.SemifluidGenerator"),
PLASMA("TechReborn.PlasmaGenerator");
@Nonnull
private final String recipeID;
private EFluidGenerator(
@Nonnull
String recipeID) {
private EFluidGenerator(@Nonnull String recipeID) {
this.recipeID = recipeID;
}