ru.astrainteractive.astralibs.expansion.KPlaceholderExpansion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-bukkit Show documentation
Show all versions of core-bukkit Show documentation
Core utilities for spigot development
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
}