Mekanism-tilera-Edition/src/api/java/buildcraft/api/core/IPathProvider.java
2015-11-25 10:24:45 -07:00

16 lines
334 B
Java
Executable file

package buildcraft.api.core;
import java.util.List;
/**
* To be implemented by TileEntities able to provide a path on the world, typically BuildCraft path markers.
*/
public interface IPathProvider {
List<BlockIndex> getPath();
/**
* Remove from the world all objects used to define the path.
*/
void removeFromWorld();
}