blob: 4915ebb057be275b6549590e2621b9dc284fb615 (
plain)
1
2
3
4
5
6
7
8
9
|
package moe.nea.firmament.gui.entity
import com.google.gson.JsonObject
import net.minecraft.world.entity.LivingEntity
fun interface EntityModifier {
fun apply(entity: LivingEntity, info: JsonObject): LivingEntity
}
|