com.skillw.attsystem.api.event.ItemLoadEvent.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 org.bukkit.entity.Entity
import org.bukkit.inventory.ItemStack
import taboolib.platform.type.BukkitProxyEvent
/**
* 加载物品事件
*
* 物品被加载到装备栏时触发
*
* @constructor Create empty Item load event
* @property entity 实体
* @property itemStack 物品
*/
class ItemLoadEvent(
val entity: Entity,
val itemStack: ItemStack,
) : BukkitProxyEvent()