com.skillw.attsystem.api.compiled.Evalable.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.compiled
import com.skillw.attsystem.api.attribute.compound.AttributeDataCompound
import org.bukkit.entity.LivingEntity
/**
* @className Evalable
*
* @author Glom
* @date 2023/8/3 1:31 Copyright 2023 user. All rights reserved.
*/
fun interface Evalable {
fun eval(entity: LivingEntity?): AttributeDataCompound
}