Added plasma generator. Some work on #884
This commit is contained in:
parent
709922b708
commit
47134cf2ab
13 changed files with 232 additions and 87 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue