minecraft-source/src/net/minecraft/world/item/DyeableArmorItem.java

10 lines
301 B
Java

package net.minecraft.world.item;
import net.minecraft.world.entity.EquipmentSlot;
public class DyeableArmorItem extends ArmorItem implements DyeableLeatherItem {
public DyeableArmorItem(final ArmorMaterial bce, final EquipmentSlot aks, final Properties a) {
super(bce, aks, a);
}
}