SnuviInventory.java 485 B

12345678910111213141516171819202122232425
  1. package me.km.snuviscript;
  2. import me.km.inventory.InventoryBase;
  3. public class SnuviInventory extends InventoryBase
  4. {
  5. private final int id;
  6. public SnuviInventory(String title, int slotCount, int id)
  7. {
  8. super(title, slotCount, null);
  9. this.id = id;
  10. }
  11. public SnuviInventory(String title, String slots, int id)
  12. {
  13. super(title, slots, null);
  14. this.id = id;
  15. }
  16. public int getId()
  17. {
  18. return id;
  19. }
  20. }