Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package net.shin1gamix.xpshop.objects;
  2.  
  3. import java.util.List;
  4.  
  5. import org.bukkit.inventory.ItemStack;
  6.  
  7. public interface ShopItem {
  8.  
  9. public int[] getSlots();
  10.  
  11. public String getName();
  12.  
  13. public List<String> getLore();
  14.  
  15. public ItemStack getItem();
  16.  
  17. boolean isGlowing();
  18.  
  19. public int getPrice();
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement