All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.hsgamer.unihologram.spigot.common.line.ItemHologramLine Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package me.hsgamer.unihologram.spigot.common.line;

import me.hsgamer.unihologram.common.line.AbstractHologramLine;
import org.bukkit.inventory.ItemStack;

import java.util.Map;

/**
 * The hologram line with item
 */
public class ItemHologramLine extends AbstractHologramLine {
    /**
     * Create a new line
     *
     * @param content  the content
     * @param settings the settings
     */
    public ItemHologramLine(ItemStack content, Map settings) {
        super(content, settings);
    }

    /**
     * Create a new line
     *
     * @param content the content
     */
    public ItemHologramLine(ItemStack content) {
        super(content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy