mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
22 lines
648 B
Java
22 lines
648 B
Java
package com.hbm.blocks.generic;
|
|
|
|
import com.hbm.lib.RefStrings;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.block.BlockLog;
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.util.IIcon;
|
|
|
|
public class BlockPinkLog extends BlockLog {
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerBlockIcons(IIconRegister reg)
|
|
{
|
|
this.field_150167_a = new IIcon[1];
|
|
this.field_150166_b = new IIcon[1];
|
|
this.field_150167_a[0] = reg.registerIcon("log_oak");
|
|
this.field_150166_b[0] = reg.registerIcon(RefStrings.MODID + ":pink_log");
|
|
}
|
|
}
|