16 lines
406 B
Java
16 lines
406 B
Java
![]() |
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);
|
||
|
}
|