update to v2.1.0

This commit is contained in:
Xanadu13
2023-07-26 17:25:06 +08:00
committed by GitHub
parent 057df60344
commit f4e8ad4920
99 changed files with 7635 additions and 0 deletions
@@ -0,0 +1,20 @@
package pers.xanadu.enderdragon.gui.slot;
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack;
import pers.xanadu.enderdragon.gui.GUISlot;
import pers.xanadu.enderdragon.gui.GUISlotType;
public class EmptySlot extends GUISlot {
@Override
public ItemStack getItem(){
return new ItemStack(Material.AIR);
}
@Override
public ItemStack getItemOnDisable(){
return new ItemStack(Material.AIR);
}
public EmptySlot(){
super(GUISlotType.EMPTY);
}
}