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

com.skillw.pouvoir.api.feature.hologram.IHologram.kt Maven / Gradle / Ivy

The newest version!
package com.skillw.pouvoir.api.feature.hologram

import com.skillw.pouvoir.api.plugin.map.component.Keyable
import org.bukkit.Location

/** 全息接口 */
interface IHologram : Keyable {

    /**
     * 传送
     *
     * @param location 坐标
     */
    fun teleport(location: Location)

    /**
     * 更新内容
     *
     * @param content 新内容
     */
    fun update(content: List)

    /** 删除 */
    fun delete()

    /** 销毁 */
    fun destroy()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy