diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2020-03-16 21:37:44 +0100 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2020-03-16 21:37:44 +0100 |
commit | f6ffb552a911c5ee0f5296ee449353cfe9da9f1f (patch) | |
tree | 689bb4fd41923d3a253ceb4b8ffbfafbaddb3075 | |
parent | fdfda15c75ef50e60588e7d1574a26ac871c8947 (diff) | |
download | GT5-Unofficial-f6ffb552a911c5ee0f5296ee449353cfe9da9f1f.tar.gz GT5-Unofficial-f6ffb552a911c5ee0f5296ee449353cfe9da9f1f.tar.bz2 GT5-Unofficial-f6ffb552a911c5ee0f5296ee449353cfe9da9f1f.zip |
Refactored TextureSet.java
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
-rw-r--r-- | src/main/java/gregtech/api/enums/TextureSet.java | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/enums/TextureSet.java b/src/main/java/gregtech/api/enums/TextureSet.java index 76ebd3b301..faca880a0b 100644 --- a/src/main/java/gregtech/api/enums/TextureSet.java +++ b/src/main/java/gregtech/api/enums/TextureSet.java @@ -4,13 +4,46 @@ import gregtech.api.interfaces.IIconContainer; public class TextureSet {
public static final TextureSet
- SET_NONE = new TextureSet("NONE"), SET_DULL = new TextureSet("DULL"), SET_RUBY = new TextureSet("RUBY"), SET_OPAL = new TextureSet("OPAL"), SET_LEAF = new TextureSet("LEAF"), SET_WOOD = new TextureSet("WOOD"), SET_SAND = new TextureSet("SAND"), SET_FINE = new TextureSet("FINE"), SET_FIERY = new TextureSet("FIERY"), SET_FLUID = new TextureSet("FLUID"), SET_ROUGH = new TextureSet("ROUGH"), SET_PAPER = new TextureSet("PAPER"), SET_GLASS = new TextureSet("GLASS"), SET_FLINT = new TextureSet("FLINT"), SET_LAPIS = new TextureSet("LAPIS"), SET_SHINY = new TextureSet("SHINY"), SET_SHARDS = new TextureSet("SHARDS"), SET_POWDER = new TextureSet("POWDER"), SET_QUARTZ = new TextureSet("QUARTZ"), SET_EMERALD = new TextureSet("EMERALD"), SET_DIAMOND = new TextureSet("DIAMOND"), SET_LIGNITE = new TextureSet("LIGNITE"), SET_MAGNETIC = new TextureSet("MAGNETIC"), SET_METALLIC = new TextureSet("METALLIC"), SET_NETHERSTAR = new TextureSet("NETHERSTAR"), SET_GEM_VERTICAL = new TextureSet("GEM_VERTICAL"), SET_GEM_HORIZONTAL = new TextureSet("GEM_HORIZONTAL");
+ SET_NONE = new TextureSet("NONE"),
+ SET_DULL = new TextureSet("DULL"),
+ SET_RUBY = new TextureSet("RUBY"),
+ SET_OPAL = new TextureSet("OPAL"),
+ SET_LEAF = new TextureSet("LEAF"),
+ SET_WOOD = new TextureSet("WOOD"),
+ SET_SAND = new TextureSet("SAND"),
+ SET_FINE = new TextureSet("FINE"),
+ SET_FIERY = new TextureSet("FIERY"),
+ SET_FLUID = new TextureSet("FLUID"),
+ SET_ROUGH = new TextureSet("ROUGH"),
+ SET_PAPER = new TextureSet("PAPER"),
+ SET_GLASS = new TextureSet("GLASS"),
+ SET_FLINT = new TextureSet("FLINT"),
+ SET_LAPIS = new TextureSet("LAPIS"),
+ SET_SHINY = new TextureSet("SHINY"),
+ SET_SHARDS = new TextureSet("SHARDS"),
+ SET_POWDER = new TextureSet("POWDER"),
+ SET_QUARTZ = new TextureSet("QUARTZ"),
+ SET_EMERALD = new TextureSet("EMERALD"),
+ SET_DIAMOND = new TextureSet("DIAMOND"),
+ SET_LIGNITE = new TextureSet("LIGNITE"),
+ SET_MAGNETIC = new TextureSet("MAGNETIC"),
+ SET_METALLIC = new TextureSet("METALLIC"),
+ SET_NETHERSTAR = new TextureSet("NETHERSTAR"),
+ SET_GEM_VERTICAL = new TextureSet("GEM_VERTICAL"),
+ SET_GEM_HORIZONTAL = new TextureSet("GEM_HORIZONTAL");
/**
* For the Indices of OrePrefixes you need to look into the OrePrefix Enum.
*/
public static final short
- INDEX_wire = 69, INDEX_foil = 70, INDEX_block1 = 71, INDEX_block2 = 72, INDEX_block3 = 73, INDEX_block4 = 74, INDEX_block5 = 75, INDEX_block6 = 76;
+ INDEX_wire = 69,
+ INDEX_foil = 70,
+ INDEX_block1 = 71,
+ INDEX_block2 = 72,
+ INDEX_block3 = 73,
+ INDEX_block4 = 74,
+ INDEX_block5 = 75,
+ INDEX_block6 = 76;
public final IIconContainer[] mTextures = new IIconContainer[128];
public final String mSetName;
|