diff --git a/api/src/main/java/net/jitse/npclib/api/NPC.java b/api/src/main/java/net/jitse/npclib/api/NPC.java index 4c8b71a..7fa369f 100644 --- a/api/src/main/java/net/jitse/npclib/api/NPC.java +++ b/api/src/main/java/net/jitse/npclib/api/NPC.java @@ -112,4 +112,19 @@ public interface NPC { NPC setItem(NPCSlot slot, ItemStack item); NPC setText(List text); + + /** + * Get the text of an NPC + * + * @return List text + */ + List getText(); + + /** + * Get a NPC's item. + * + * @param slot The slot the item is in. + * @return ItemStack item. + */ + ItemStack getItem(NPCSlot slot); }