13 lines
341 B
Java
13 lines
341 B
Java
package net.serenas.shitmod;
|
|
|
|
import net.minecraft.item.SwordItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
|
|
public class copperSword extends SwordItem {
|
|
|
|
public copperSword(ToolMaterial toolMaterial, int attackDamage, float attackSpeed, Settings settings) {
|
|
super(toolMaterial, attackDamage, attackSpeed, settings);
|
|
}
|
|
|
|
}
|