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

ru.astrainteractive.astralibs.expansion.KPlaceholderExpansion.kt Maven / Gradle / Ivy

The newest version!
package ru.astrainteractive.astralibs.expansion

import me.clip.placeholderapi.expansion.PlaceholderExpansion

abstract class KPlaceholderExpansion(
    private val identifier: String,
    private val author: String,
    private val version: String
) : PlaceholderExpansion() {
    override fun getIdentifier(): String = identifier
    override fun getAuthor(): String = author
    override fun getVersion(): String = version
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy