generic toolItem classes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package net.fabricmc.ryantlg.customToolItemClasses.generic;
|
||||
|
||||
import net.minecraft.item.ShovelItem;
|
||||
import net.minecraft.item.ToolMaterial;
|
||||
|
||||
public class CSTShovelItem extends ShovelItem{
|
||||
|
||||
public CSTShovelItem(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) {
|
||||
super(material, attackDamage, attackSpeed, settings);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package net.fabricmc.ryantlg.customToolItemClasses.generic;
|
||||
|
||||
import net.minecraft.item.SwordItem;
|
||||
import net.minecraft.item.ToolMaterial;
|
||||
|
||||
public class CSTSwordItem extends SwordItem{
|
||||
|
||||
public CSTSwordItem(ToolMaterial toolMaterial, int attackDamage, float attackSpeed, Settings settings) {
|
||||
super(toolMaterial, attackDamage, attackSpeed, settings);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user