Testing
This commit is contained in:
commit
8601e9faff
498 changed files with 45817 additions and 0 deletions
22
BM_src/WayofTime/alchemicalWizardry/TestingBlock.java
Normal file
22
BM_src/WayofTime/alchemicalWizardry/TestingBlock.java
Normal file
|
@ -0,0 +1,22 @@
|
|||
package WayofTime.alchemicalWizardry;
|
||||
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
|
||||
public class TestingBlock extends Block
|
||||
{
|
||||
public TestingBlock(int id, Material material)
|
||||
{
|
||||
super(id, material);
|
||||
}
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
this.blockIcon = iconRegister.registerIcon("AlchemicalWizardry:Testing");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue