blob: bf30de490b34be965d9ae0c56e327e99e246e716 [file] [log] [blame] [raw]
package forestry.api.farming;
import forestry.api.core.ITileStructure;
public interface IFarmComponent extends ITileStructure {
boolean hasFunction();
void registerListener(IFarmListener listener);
void removeListener(IFarmListener listener);
}