package forestry.api.farming;

import forestry.api.core.IStructureLogic;

public interface IFarmInterface {

	/**
	 * Creates {@link IStructureLogic} for use in farm components.
	 * 
	 * @param structure
	 *            {@link IFarmComponent} to create the logic for.
	 * @return {@link IStructureLogic} for use in farm components
	 */
	IStructureLogic createFarmStructureLogic(IFarmComponent structure);
}