13 lines
343 B
Java
13 lines
343 B
Java
package tech.nevets.vplus.items.tools;
|
|
|
|
import net.minecraft.item.AxeItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
import tech.nevets.vplus.items.VPItemGroups;
|
|
|
|
public class AxeBase extends AxeItem {
|
|
|
|
public AxeBase(ToolMaterial material, Settings settings) {
|
|
super(material, 5, -3.0F, settings.group(VPItemGroups.TOOLS));
|
|
}
|
|
}
|