11 lines
311 B
Java
11 lines
311 B
Java
package ru.betterend.item;
|
|
|
|
import net.minecraft.item.HoeItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
|
|
public class EndHoe extends HoeItem {
|
|
|
|
public EndHoe(ToolMaterial material, int attackDamage, float attackSpeed, Settings settings) {
|
|
super(material, attackDamage, attackSpeed, settings);
|
|
}
|
|
}
|