13 lines
344 B
Java
Raw Normal View History

2022-07-18 13:30:22 -07:00
package net.serenas.shitmod;
import net.minecraft.item.PickaxeItem;
import net.minecraft.item.ToolMaterial;
public class copperPickaxe extends PickaxeItem {
protected copperPickaxe(ToolMaterial material, int attackDamage, float attackSpeed, Settings settings) {
super(material, attackDamage, attackSpeed, settings);
}
}