blob: bab6c3546ffd72116d8c460698ac371d87c3cee0 (
plain)
1
2
3
4
5
6
7
8
|
package io.github.moulberry.notenoughupdates.miscfeatures.entityviewer;
import com.google.gson.JsonObject;
import net.minecraft.entity.EntityLivingBase;
public abstract class EntityViewerModifier {
public abstract EntityLivingBase applyModifier(EntityLivingBase base, JsonObject info);
}
|