package me.km.snuviscript; import me.km.inventory.InventoryBase; public class SnuviInventory extends InventoryBase { private final int id; public SnuviInventory(String title, int slotCount, int id) { super(title, slotCount, null); this.id = id; } public SnuviInventory(String title, String slots, int id) { super(title, slots, null); this.id = id; } public int getId() { return id; } }