13 lines
395 B
Java
Executable File
13 lines
395 B
Java
Executable File
package net.arcmods.ryantlg.customToolItemClasses.jeremium;
|
|
|
|
import net.minecraft.item.PickaxeItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
|
|
public class JeremiumPickaxeItem extends PickaxeItem{
|
|
|
|
public JeremiumPickaxeItem(ToolMaterial material, int attackDamage, float attackSpeed, Settings settings) {
|
|
super(material, attackDamage, attackSpeed, settings);
|
|
}
|
|
|
|
}
|