blob: e020d662ca7d2be413bc42df26079a573226ec6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package moe.nea.firmament.features.texturepack
import kotlinx.serialization.Serializable
import net.minecraft.entity.LivingEntity
import net.minecraft.item.ItemStack
@Serializable(with = FirmamentRootPredicateSerializer::class)
interface FirmamentModelPredicate {
fun test(stack: ItemStack, holder: LivingEntity?): Boolean = test(stack)
fun test(stack: ItemStack): Boolean = test(stack, null)
}
|