Skip to content

Instantly share code, notes, and snippets.

@arjolpanci
Created May 8, 2016 13:43
Show Gist options
  • Save arjolpanci/96d2d15a23eb23897c77e926de78dc8c to your computer and use it in GitHub Desktop.
Save arjolpanci/96d2d15a23eb23897c77e926de78dc8c to your computer and use it in GitHub Desktop.
package net.ea.items;
import net.ea.main.electronicage;
import net.minecraft.item.Item;
public class baseCircuit extends Item {
public baseCircuit(String name){
this.setRegistryName(name);
this.setUnlocalizedName(this.getRegistryName().toString());
this.setMaxStackSize(64);
this.setCreativeTab(electronicage.eaTab);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment