ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/internal/IFarmer.java

26 lines
570 B
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.api.internal;
import net.minecraft.item.ItemStack;
import net.minecraft.util.Direction;
import java.util.List;
/**
* This is a helper interface for IFarmerBehavior.
* <p>
* This is not supposed to be implemented.
* Can be cast to TileEntity.
*/
2019-05-02 09:10:29 +02:00
public interface IFarmer extends IEnergyTile {
Direction getOrientation();
boolean canAddToSeeds(List<ItemStack> stacks);
boolean canAddToOutput(List<ItemStack> stacks);
2019-02-27 19:53:05 +01:00
void addToSeeds(List<ItemStack> stacks);
2019-02-27 19:53:05 +01:00
void addToOutput(List<ItemStack> stacks);
}