Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / ItemHorseArmor.java
Simon Lindgren on 26 Mar 2020 374 bytes first commit
package net.minecraft.server;

public class ItemHorseArmor extends Item {

    private final int a;
    private final String b;

    public ItemHorseArmor(int i, String s, Item.Info item_info) {
        super(item_info);
        this.a = i;
        this.b = "textures/entity/horse/armor/horse_armor_" + s + ".png";
    }

    public int g() {
        return this.a;
    }
}