Create EmeraldApple.java

added class for emerald apple
This commit is contained in:
Steven Tracey 2020-11-20 11:47:50 -05:00 committed by GitHub
parent 3a50434be3
commit 648fb6239b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,13 @@
package net.nevets.everythingvanilla.items;
import net.minecraft.item.Item;
public class EmeraldApple extends Item {
public EmeraldApple(Settings settings) {
super(settings);
}
}