11 lines
361 B
Java
Executable File
11 lines
361 B
Java
Executable File
package net.arcmods.ryantlg.customToolItemClasses.generic;
|
|
|
|
import net.minecraft.item.HoeItem;
|
|
|
|
import net.minecraft.item.ToolMaterial;
|
|
|
|
public class CSTHoeItem extends HoeItem {
|
|
public CSTHoeItem(ToolMaterial material, int attackDamage, float attackSpeed, Settings settings) {
|
|
super(material, attackDamage, attackSpeed, settings);
|
|
}
|
|
} |