1package net.minecraft.server; 2 3public class BlockOreBlock extends Block { 4 5 public BlockOreBlock(int i, int j) { 6 super(i, Material.ORE); 7 this.textureId = j; 8 } 9 10 public int a(int i) { 11 return this.textureId; 12 } 13}