diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-04 19:35:43 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-04 19:35:43 +1000 |
| commit | 8492772516898efed17f7384c63ef7d049fbd24a (patch) | |
| tree | 452499e0be375fd5011d3e0d51a6bae82955482e /src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures | |
| parent | 17c7ba1ac71c3a9889c097c06ccdffeec44c557f (diff) | |
| download | GT5-Unofficial-8492772516898efed17f7384c63ef7d049fbd24a.tar.gz GT5-Unofficial-8492772516898efed17f7384c63ef7d049fbd24a.tar.bz2 GT5-Unofficial-8492772516898efed17f7384c63ef7d049fbd24a.zip | |
+ Started adding recipes for the chemicals added earlier.
+ Added a framework for a Catalytic Reactor.
$ Fixed FFPP recipes.
$ Finally fixed #56. Textures from GT++ now have their own array to prevent GT Texture overlap issues.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java index 1cda562af9..9ccae92bae 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java @@ -2,6 +2,7 @@ package gtPlusPlus.xmod.gregtech.common.blocks.textures; import gregtech.api.GregTech_API; import gregtech.api.interfaces.IIconContainer; +import gregtech.api.interfaces.ITexture; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.core.util.Utils; import net.minecraft.client.renderer.texture.TextureMap; @@ -10,6 +11,9 @@ import net.minecraft.util.ResourceLocation; public class TexturesGtBlock { + + public static ITexture[] CASING_BLOCKS_GTPP = new ITexture[256]; + /* * Handles Custom Textures. */ |
