com.skillw.attsystem.api.event.StringsReadEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AttributeSystem Show documentation
Show all versions of AttributeSystem Show documentation
Bukkit Attribute Engine Plugin.
The newest version!
package com.skillw.attsystem.api.event
import com.skillw.attsystem.api.compiled.CompiledData
import org.bukkit.entity.LivingEntity
import taboolib.platform.type.BukkitProxyEvent
/**
* 读取字符串属性事件
*
* @constructor Create empty Strings read event
* @property entity 实体
* @property strings 字符串集
* @property compiledData 预编译属性数据
*/
open class StringsReadEvent(
val entity: LivingEntity?,
val strings: Collection,
val compiledData: CompiledData,
) : BukkitProxyEvent()