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

be.maximvdw.placeholderapi.internal.CustomPlaceholdersPack Maven / Gradle / Ivy

Go to download

MVdW Placeholder API is an API that allows you to register placeholders to all MVdW Placeholder plugins at once.

The newest version!
package be.maximvdw.placeholderapi.internal;

import be.maximvdw.placeholderapi.internal.annotations.*;
import org.bukkit.plugin.Plugin;

/**
 * CustomPlaceholdersPack
 * Created by Maxim on 3/10/2017.
 */

@ModuleName("CustomPlaceholdersPack")
@ModuleAuthor("Maximvdw")
@ModuleVersion("2.0.0")
@ModuleDescription("MVdWPlaceholderAPI placeholders")
@ModulePermalink("https://www.spigotmc.org/resources/mvdwplaceholderapi.11182/")
public class CustomPlaceholdersPack extends PlaceholderPack {
    private static CustomPlaceholdersPack instance = null;

    public static CustomPlaceholdersPack getInstance() {
        return instance;
    }

    public CustomPlaceholdersPack(Plugin plugin) {
        super(plugin, 1);
        setEnabled(true);
        instance = this;
    }

    @Override
    public void onDisable() {

    }

    @Override
    public void onDelete() {

    }

    @Override
    public void onEnable() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy