me.hsgamer.unihologram.spigot.common.line.ItemHologramLine Maven / Gradle / Ivy
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);
}
}