30 lines
790 B
Java
30 lines
790 B
Java
|
package powercrystals.minefactoryreloaded.api;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Random;
|
||
|
|
||
|
import net.minecraft.entity.EntityLiving;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
/**
|
||
|
* @author PowerCrystals
|
||
|
*
|
||
|
* Defines a grindable entity for the Grinder.
|
||
|
*/
|
||
|
public interface IFactoryGrindable
|
||
|
{
|
||
|
/**
|
||
|
* @return The class that this grindable instance is handling. This must be a subtype of EntityLiving 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, EntityLiving entity, Random random);
|
||
|
}
|