mirror of
https://github.com/plexusorg/ItemizerX.git
synced 2025-04-17 13:33:03 +00:00
18 lines
429 B
Java
18 lines
429 B
Java
package dev.plex.itemizerx;
|
|
|
|
import net.minecraft.nbt.ListTag;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import org.bukkit.entity.Player;
|
|
|
|
public interface IAttributeManager {
|
|
ListTag getAttrList(final ItemStack item);
|
|
|
|
void addAttr(final Player player, final String[] args);
|
|
|
|
void removeAttr(final Player player, final String string);
|
|
|
|
void listAttr(final Player player);
|
|
|
|
String colorize(String string);
|
|
}
|