blob: af1068b16c3646ab57a3353d97ca54376413e72c [file] [log] [blame] [raw]
package calclavia.lib.multiblock;
import universalelectricity.core.vector.Vector3;
/**
* Interface to be applied to tile entity blocks that occupies more than one block space. Useful for
* large machines.
*
* @author Calclavia
*
*/
public interface IMultiBlock
{
/**
* @return An array of Vector3 containing the multiblock relative coordinates to be constructed.
*/
public Vector3[] getMultiBlockVectors();
}