-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac020ef
commit 02d36c3
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/gregtech/api/fluids/fluidType/FluidTypes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
package gregtech.api.fluids.fluidType; | ||
|
||
import crafttweaker.annotations.ZenRegister; | ||
import stanhebben.zenscript.annotations.ZenClass; | ||
import stanhebben.zenscript.annotations.ZenProperty; | ||
|
||
@ZenClass("mods.gregtech.material.FluidTypes") | ||
@ZenRegister | ||
public class FluidTypes { | ||
|
||
@ZenProperty | ||
public static final FluidType LIQUID = new FluidTypeLiquid("liquid", "", "", "gregtech.fluid.generic"); | ||
|
||
@ZenProperty | ||
public static final FluidType ACID = new FluidTypeAcid("acid", "", "", "gregtech.fluid.generic"); | ||
|
||
@ZenProperty | ||
public static final FluidType GAS = new FluidTypeGas("gas", "", "", "gregtech.fluid.generic"); | ||
|
||
@ZenProperty | ||
public static final FluidType PLASMA = new FluidTypePlasma("plasma", "plasma", "", "gregtech.fluid.plasma"); | ||
} |