aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/entity/EntityModifier.kt
blob: 9623070f009fed2a854db93d577d9b2b21fd6305 (plain)
1
2
3
4
5
6
7
8
9
package moe.nea.firmament.gui.entity

import com.google.gson.JsonObject
import net.minecraft.entity.LivingEntity

fun interface EntityModifier {
    fun apply(entity: LivingEntity, info: JsonObject): LivingEntity
}