15 lines
340 B
Java
15 lines
340 B
Java
|
package anvil.infinity.compat;
|
||
|
|
||
|
import anvil.infinity.abilities.*;
|
||
|
import lucraft.mods.lucraftcore.superpowers.abilities.Ability;
|
||
|
import net.minecraft.entity.EntityLivingBase;
|
||
|
|
||
|
public class HENotLoadedProxy implements HEProxy {
|
||
|
|
||
|
@Override
|
||
|
public Ability getAbilityGrabEntity(EntityLivingBase entity) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|