18 lines
561 B
Java
18 lines
561 B
Java
package powercrystals.minefactoryreloaded.api;
|
|
|
|
import net.minecraft.entity.EntityEggInfo;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
/**
|
|
* @author PowerCrystals
|
|
*
|
|
* Defines a class that MFR will use to local egg info for a given mob. This is used to color the Safari Net based on the captured mob.
|
|
*/
|
|
public interface IMobEggHandler
|
|
{
|
|
/**
|
|
* @param safariNet The Safari Net that is looking for egg info.
|
|
* @return An EntityEggInfo, or null if this instance cannot handle this mob.
|
|
*/
|
|
public EntityEggInfo getEgg(ItemStack safariNet);
|
|
}
|