53323279c7
Still need to configure the build
18 lines
425 B
Java
18 lines
425 B
Java
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();
|
|
}
|