2015-06-23 22:29:05 +00:00
|
|
|
package gregtech.loaders.misc;
|
|
|
|
|
|
|
|
import gregtech.api.GregTech_API;
|
2015-04-23 16:14:22 +00:00
|
|
|
import gregtech.api.enums.Textures;
|
2015-06-23 22:29:05 +00:00
|
|
|
import gregtech.api.enums.Textures.BlockIcons;
|
|
|
|
import gregtech.api.objects.GT_CopiedBlockTexture;
|
|
|
|
import gregtech.api.objects.GT_RenderedTexture;
|
|
|
|
import gregtech.api.util.GT_ModHandler;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public class GT_CoverLoader
|
|
|
|
implements Runnable
|
|
|
|
{
|
|
|
|
public void run()
|
|
|
|
{
|
|
|
|
for (byte i = 0; i < 16; i = (byte)(i + 1)) {
|
|
|
|
GregTech_API.registerCover(new ItemStack(Blocks.carpet, 1, i), new GT_CopiedBlockTexture(Blocks.wool, 0, i), null);
|
|
|
|
}
|
|
|
|
GregTech_API.registerCover(GT_ModHandler.getIC2Item("reactorVent", 1L), new GT_RenderedTexture(Textures.BlockIcons.VENT_NORMAL), null);
|
|
|
|
GregTech_API.registerCover(GT_ModHandler.getIC2Item("reactorVentCore", 1L), new GT_RenderedTexture(Textures.BlockIcons.VENT_NORMAL), null);
|
|
|
|
GregTech_API.registerCover(GT_ModHandler.getIC2Item("reactorVentGold", 1L), new GT_RenderedTexture(Textures.BlockIcons.VENT_ADVANCED), null);
|
|
|
|
GregTech_API.registerCover(GT_ModHandler.getIC2Item("reactorVentSpread", 1L), new GT_RenderedTexture(Textures.BlockIcons.VENT_NORMAL), null);
|
|
|
|
GregTech_API.registerCover(GT_ModHandler.getIC2Item("reactorVentDiamond", 1L), new GT_RenderedTexture(Textures.BlockIcons.VENT_ADVANCED), null);
|
|
|
|
}
|
|
|
|
}
|
2015-04-23 16:14:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|
|
|
|
* Qualified Name: gregtech.loaders.misc.GT_CoverLoader
|
|
|
|
* JD-Core Version: 0.7.0.1
|
|
|
|
*/
|