Skip to content

Instantly share code, notes, and snippets.

@bensku
bensku / gist:8507261
Created January 19, 2014 16:36
Simplest possible CustomItem
import bensku.plugin.ItemAPI.api.CustomItem;
public class TestWand extends CustomItem {
public TestWand() {
super("testWand"); //CodeName of item
}
}