13 lines
366 B
Java
13 lines
366 B
Java
package net.arcmods.ryantlg.customToolItemClasses.not;
|
|
|
|
import net.minecraft.item.ShovelItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
|
|
public class notShovelItem extends ShovelItem{
|
|
|
|
public notShovelItem(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) {
|
|
super(material, attackDamage, attackSpeed, settings);
|
|
}
|
|
|
|
}
|