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