2013-07-28 10:37:31 +00:00
|
|
|
package forestry.api.core;
|
|
|
|
|
|
|
|
public interface IStructureLogic extends INBTTagable {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return String unique to the type of structure controlled by this structure logic.
|
|
|
|
*/
|
|
|
|
String getTypeUID();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by {@link ITileStructure}'s validateStructure().
|
|
|
|
*/
|
|
|
|
void validateStructure();
|
|
|
|
|
|
|
|
}
|