13 lines
330 B
Java
13 lines
330 B
Java
package net.serenas.shitmod;
|
|
|
|
import net.minecraft.item.AxeItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
|
|
public class copperAxe extends AxeItem {
|
|
|
|
protected copperAxe(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) {
|
|
super(material, attackDamage, attackSpeed, settings);
|
|
}
|
|
|
|
}
|