Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.wizardofoz.basic;
- import net.minecraft.item.Item;
- import cpw.mods.fml.common.Mod;
- import cpw.mods.fml.common.SidedProxy;
- import com.wizardofoz.basic.item.EmeraldAxe;
- @Mod(modid = "EmeraldBlock", name = "EmeraldBlock", version = "ALPHA 1.0")
- public class EmeraldBlockItems {
- @SidedProxy(clientSide = "com.wizardofoz.basic.ClientProxy", serverSide = "com.wizardofoz.basic.CommonProxy")
- public static CommonProxy proxy;
- public static Item EmeraldAxe = new EmeraldAxe(3000, Emerald).setUnlocalizedName("EmeraldAxe").setTextureName("EmeraldBlockItems:EmeraldAxe");
- }
Advertisement
Add Comment
Please, Sign In to add comment