Update Feb 2nd 2023

This commit is contained in:
Paul Reilly
2023-03-05 22:35:52 -06:00
parent 0195469165
commit 839990554e
21 changed files with 377 additions and 325 deletions

View File

@ -0,0 +1,9 @@
package io.github.paldiu.config;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
@FunctionalInterface
public interface ItemMetaSupplier {
ItemMeta getFrom(ItemStack itemStack);
}