package de.jatitv.commandguiv2.Spigot.objects.guis; import de.jatitv.commandguiv2.Spigot.objects.slots.Slot; import java.util.ArrayList; public class Gui { public Boolean guiEnable; public Integer guiLines; public String guiName; public Boolean guiFillItemEnable; public String guiFillItemItem; public String key; public Boolean commandAliasEnable; public Boolean commandPermissionEnable; public ArrayList slots; public Gui(Boolean guiEnable, Integer guiLines, String guiName, Boolean guiFillitemEnable, String guiFillitemItem, String commandCommand, Boolean commandAliasEnable, Boolean commandPermissionEnable, ArrayList slots){ this.guiEnable = guiEnable; this.guiLines = guiLines; this.guiName = guiName; this.guiFillItemEnable = guiFillitemEnable; this.guiFillItemItem = guiFillitemItem; this.key = commandCommand; this.commandAliasEnable = commandAliasEnable; this.commandPermissionEnable = commandPermissionEnable; this.slots = slots; } }