36 lines
1 KiB
Java
36 lines
1 KiB
Java
package powercrystals.minefactoryreloaded.api;
|
|
|
|
import java.util.List;
|
|
import java.util.Random;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.world.World;
|
|
|
|
/**
|
|
* @author PowerCrystals
|
|
*
|
|
* Defines a grindable entity for the Grinder.
|
|
*/
|
|
@SuppressWarnings("deprecation")
|
|
public interface IFactoryGrindable
|
|
{
|
|
/**
|
|
* @return The class that this grindable instance is handling. This must be a subtype of EntityLivingBase or the entity will never
|
|
* be noticed by the Grinder.
|
|
*/
|
|
public Class<?> getGrindableEntity();
|
|
|
|
/**
|
|
* @param world The world this entity is in.
|
|
* @param entity The entity instance being ground.
|
|
* @param random A Random instance.
|
|
* @return The drops generated when this entity is killed.
|
|
*/
|
|
public List<MobDrop> grind(World world, EntityLivingBase entity, Random random);
|
|
|
|
/**
|
|
* @param entity The entity instance being ground.
|
|
* @return Whether this entity has been fully processed or not.
|
|
*/
|
|
public boolean processEntity(EntityLivingBase entity);
|
|
}
|