13 lines
328 B
Java
13 lines
328 B
Java
![]() |
package net.serenas.shitmod;
|
||
|
|
||
|
import net.minecraft.item.HoeItem;
|
||
|
import net.minecraft.item.ToolMaterial;
|
||
|
|
||
|
public class copperHoe extends HoeItem {
|
||
|
|
||
|
protected copperHoe(ToolMaterial material, int attackDamage, float attackSpeed, Settings settings) {
|
||
|
super(material, attackDamage, attackSpeed, settings);
|
||
|
}
|
||
|
|
||
|
}
|