minecraft-src/net/minecraft/world/item/ArmorItem.java
2025-07-04 02:00:41 +03:00

10 lines
353 B
Java

package net.minecraft.world.item;
import net.minecraft.world.item.equipment.ArmorMaterial;
import net.minecraft.world.item.equipment.ArmorType;
public class ArmorItem extends Item {
public ArmorItem(ArmorMaterial armorMaterial, ArmorType armorType, Item.Properties properties) {
super(armorMaterial.humanoidProperties(properties, armorType));
}
}