
org.bukkit.inventory.HorseInventory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
package org.bukkit.inventory;
/**
* An interface to the inventory of a Horse.
*/
public interface HorseInventory extends Inventory {
/**
* Gets the item in the horse's saddle slot.
*
* @return the saddle item
*/
ItemStack getSaddle();
/**
* Sets the item in the horse's saddle slot.
*
* @param stack the new item
*/
void setSaddle(ItemStack stack);
/**
* Gets the item in the horse's armor slot.
*
* @return the armor item
*/
ItemStack getArmor();
/**
* Sets the item in the horse's armor slot.
*
* @param stack the new item
*/
void setArmor(ItemStack stack);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy