Delete src/main/java/pers/xanadu/enderdragon/gui directory

This commit is contained in:
Xanadu13
2023-08-25 21:49:31 +08:00
committed by GitHub
parent cf6026a888
commit 4a8bb8cb08
13 changed files with 0 additions and 649 deletions
@@ -1,20 +0,0 @@
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);
}
}