10 lines
343 B
Java
10 lines
343 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 material, ArmorType armorType, Item.Properties properties) {
|
|
super(material.humanoidProperties(properties, armorType));
|
|
}
|
|
}
|