aboutsummaryrefslogtreecommitdiff
path: root/src/texturePacks/java/moe/nea/firmament/features/texturepack/FirmamentModelPredicate.kt
blob: 6cef4ca3f5cf5fd51902c6febaac958e4237dd76 (plain)
1
2
3
4
5
6
7
8
9
package moe.nea.firmament.features.texturepack

import net.minecraft.entity.LivingEntity
import net.minecraft.item.ItemStack

interface FirmamentModelPredicate {
	fun test(stack: ItemStack, holder: LivingEntity?): Boolean = test(stack)
	fun test(stack: ItemStack): Boolean = test(stack, null)
}