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

me.hsgamer.unihologram.spigot.common.line.SkullHologramLine 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.TextHologramLine;

import java.util.Map;

/**
 * The hologram line with skull
 */
public class SkullHologramLine extends TextHologramLine {
    /**
     * Create a new line
     *
     * @param content  the content
     * @param settings the settings
     */
    public SkullHologramLine(String content, Map settings) {
        super(content, settings);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy