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