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